comparison dwt/widgets/Group.d @ 117:25f88bf5a6df

Only one file was damaged Backed out changeset 640928daee8c
author Frank Benoit <benoit@tionex.de>
date Mon, 11 Feb 2008 04:18:24 +0100
parents 640928daee8c
children ab60f3309436
comparison
equal deleted inserted replaced
115:640928daee8c 117:25f88bf5a6df
480 * Invalidate the portion of the group widget that needs to 480 * Invalidate the portion of the group widget that needs to
481 * be redrawn. Note that for some reason, invalidating the 481 * be redrawn. Note that for some reason, invalidating the
482 * group from inside WM_SIZE causes pixel corruption for 482 * group from inside WM_SIZE causes pixel corruption for
483 * radio button children. 483 * radio button children.
484 */ 484 */
485 if (OS.IsWinCE) return result; 485 static if (OS.IsWinCE) return result;
486 if (!OS.IsWindowVisible (handle)) return result; 486 if (!OS.IsWindowVisible (handle)) return result;
487 WINDOWPOS* lpwp = cast(WINDOWPOS*)lParam; 487 WINDOWPOS* lpwp = cast(WINDOWPOS*)lParam;
488 //OS.MoveMemory (lpwp, lParam, WINDOWPOS.sizeof); 488 //OS.MoveMemory (lpwp, lParam, WINDOWPOS.sizeof);
489 if ((lpwp.flags & (OS.SWP_NOSIZE | OS.SWP_NOREDRAW)) !is 0) { 489 if ((lpwp.flags & (OS.SWP_NOSIZE | OS.SWP_NOREDRAW)) !is 0) {
490 return result; 490 return result;