Changeset 387 for trunk/src/user32/new/controls.cpp
- Timestamp:
- Jul 24, 1999, 7:10:26 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/controls.cpp
r384 r387 1 /* $Id: controls.cpp,v 1. 7 1999-07-24 12:40:20cbratschi Exp $ */1 /* $Id: controls.cpp,v 1.8 1999-07-24 17:10:24 cbratschi Exp $ */ 2 2 /* File: controls.cpp -- Win32 common controls 3 3 * … … 14 14 #include "static.h" 15 15 #include "scroll.h" 16 #include "combo.H" //listbox included16 #include "combo.H" //listbox,combo,edit 17 17 18 18 /* registration */ … … 37 37 dprintf(("Register COMBOBOX class")); 38 38 if (!COMBOBOX_Register()) dprintf(("failed!!!")); 39 40 dprintf(("Register EDIT class")); 41 if (!EDIT_Register()) dprintf(("failed!!!")); 39 42 } 40 43 … … 58 61 dprintf(("Unregister COMBOBOX class")); 59 62 if (!COMBOBOX_Unregister()) dprintf(("failed!!!")); 63 64 dprintf(("Unregister EDIT class")); 65 if (!EDIT_Unregister()) dprintf(("failed!!!")); 60 66 } 61 67
Note:
See TracChangeset
for help on using the changeset viewer.