Changeset 1704 for trunk/src/user32/win32dlg.cpp
- Timestamp:
- Nov 11, 1999, 2:17:33 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32dlg.cpp
r1622 r1704 1 /* $Id: win32dlg.cpp,v 1.3 2 1999-11-05 17:50:30 achimhaExp $ */1 /* $Id: win32dlg.cpp,v 1.33 1999-11-11 13:17:31 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Dialog Code for OS/2 … … 85 85 } 86 86 } 87 88 //Set help id 89 setWindowContextHelpId(dlgInfo.helpId); 87 90 88 91 /* Create dialog main window */ … … 209 212 } 210 213 } 211 212 //TODO:213 // wndPtr->helpContext = helpId;214 214 215 215 if (hUserFont) … … 1021 1021 LONG oldval; 1022 1022 1023 dprintf2(("Win32Dialog::SetWindowLongA %x %d %x", getWindowHandle(), index, value)); 1023 1024 switch(index) 1024 1025 { 1025 1026 case DWL_DLGPROC: 1026 1027 oldval = (LONG)Win32DlgProc; 1027 Win32DlgProc = (DLGPROC) index;1028 Win32DlgProc = (DLGPROC)value; 1028 1029 return oldval; 1029 1030 case DWL_MSGRESULT: … … 1043 1044 ULONG Win32Dialog::GetWindowLongA(int index) 1044 1045 { 1046 dprintf2(("Win32Dialog::GetWindowLongA %x %d", getWindowHandle(), index)); 1045 1047 switch(index) 1046 1048 {
Note:
See TracChangeset
for help on using the changeset viewer.