comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/widgets/Group.d @ 38:2e09b0e6857a

work on phobosfication
author Frank Benoit <benoit@tionex.de>
date Wed, 25 Mar 2009 11:18:25 +0100
parents 6dd524f61e62
children 0ecb2b338560
comparison
equal deleted inserted replaced
37:46c5f8f56b41 38:2e09b0e6857a
89 WNDCLASS lpWndClass; 89 WNDCLASS lpWndClass;
90 static if (OS.IsWinCE) { 90 static if (OS.IsWinCE) {
91 OS.GetClassInfo (null, GroupClass.ptr, &lpWndClass); 91 OS.GetClassInfo (null, GroupClass.ptr, &lpWndClass);
92 GroupProc = lpWndClass.lpfnWndProc; 92 GroupProc = lpWndClass.lpfnWndProc;
93 } else { 93 } else {
94 TCHAR[] WC_BUTTON = "BUTTON\0"; 94 StringT WC_BUTTON = "BUTTON\0";
95 OS.GetClassInfo (null, WC_BUTTON.ptr, &lpWndClass); 95 OS.GetClassInfo (null, WC_BUTTON.ptr, &lpWndClass);
96 GroupProc = lpWndClass.lpfnWndProc; 96 GroupProc = lpWndClass.lpfnWndProc;
97 auto hInstance = OS.GetModuleHandle (null); 97 auto hInstance = OS.GetModuleHandle (null);
98 if (!OS.GetClassInfo (hInstance, GroupClass.ptr, &lpWndClass)) { 98 if (!OS.GetClassInfo (hInstance, GroupClass.ptr, &lpWndClass)) {
99 auto hHeap = OS.GetProcessHeap (); 99 auto hHeap = OS.GetProcessHeap ();