Changeset 46 for trunk/src/user32/wndproc.cpp
- Timestamp:
- Jun 7, 1999, 10:58:22 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/wndproc.cpp
r34 r46 1 /* $Id: wndproc.cpp,v 1.2 1999-06-02 16:00:38 cbratschi Exp $ */2 3 1 /* 4 2 * … … 94 92 { 95 93 Win32WindowProc *window = Win32WindowProc::windows; 96 94 97 95 /* @@@PH 98/07/13 what's this whole code good for ? */ 98 if(window == this) 96 if(window == this) 99 97 { 100 98 windows = next; 101 99 } 102 else 100 else 103 101 { 104 102 /* @@@PH 98/07/13 window can be NULL */ 105 103 if (window != NULL) 106 while(window->next != NULL) 104 while(window->next != NULL) 107 105 { 108 if(window->next == this) 106 if(window->next == this) 109 107 { 110 108 window->next = next; … … 114 112 } 115 113 } 116 117 if(os2dlg) 114 115 if(os2dlg) 118 116 { 119 117 DeleteWin32DlgTemplate(os2dlg); … … 240 238 lParam = MapOEMToRealKey(wParam, lParam); 241 239 } 242 #ifdef DEBUG 1240 #ifdef DEBUG 243 241 WriteLog("***************Message %s for window/dialog %X\n", GetMsgText(Msg), hwnd); 244 242 #endif
Note:
See TracChangeset
for help on using the changeset viewer.