Changeset 221
- Timestamp:
- Sep 3, 2002, 4:42:25 PM (23 years ago)
- Location:
- trunk/src/helpers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/comctl.c
r209 r221 123 123 ********************************************************************/ 124 124 125 PFNWP G_pfnwpS tatic = NULL;125 PFNWP G_pfnwpSepStatic = NULL; 126 126 127 127 /* … … 172 172 173 173 default: 174 mrc = G_pfnwpS tatic(hwnd, msg, mp1, mp2);174 mrc = G_pfnwpSepStatic(hwnd, msg, mp1, mp2); 175 175 } 176 176 … … 192 192 &ciStatic)) 193 193 { 194 G_pfnwpS tatic = ciStatic.pfnWindowProc;194 G_pfnwpSepStatic = ciStatic.pfnWindowProc; 195 195 196 196 return WinRegisterClass(hab, -
trunk/src/helpers/dialog.c
r213 r221 754 754 #ifdef DEBUG_DIALOG_WINDOWS 755 755 756 static PFNWP G_pfnwp Static= NULL;756 static PFNWP G_pfnwpDebugStaticOrig = NULL; 757 757 758 758 /* … … 812 812 813 813 default: 814 mrc = G_pfnwp Static(hwndBox, msg, mp1, mp2);814 mrc = G_pfnwpDebugStaticOrig(hwndBox, msg, mp1, mp2); 815 815 } 816 816 … … 853 853 NULL)) 854 854 { 855 G_pfnwp Static= WinSubclassWindow(hwndDebug, fnwpDebugFrame);855 G_pfnwpDebugStaticOrig = WinSubclassWindow(hwndDebug, fnwpDebugFrame); 856 856 winhSetPresColor(hwndDebug, PP_FOREGROUNDCOLOR, lcol); 857 857 WinSetWindowULong(hwndDebug, QWL_USER, lLineType);
Note:
See TracChangeset
for help on using the changeset viewer.