Changeset 2396 for trunk/src/user32/new/controls.cpp
- Timestamp:
- Jan 10, 2000, 6:18:13 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/controls.cpp
r2292 r2396 1 /* $Id: controls.cpp,v 1.1 4 2000-01-02 19:30:42cbratschi Exp $ */1 /* $Id: controls.cpp,v 1.15 2000-01-10 17:18:07 cbratschi Exp $ */ 2 2 /* File: controls.cpp -- Win32 common controls 3 3 * … … 19 19 #include "winswitch.h" 20 20 #include "icontitle.h" 21 #include "menu.h" 21 22 #include "controls.h" 22 23 … … 74 75 controlAtoms[ICONTITLE_CONTROL] = ICONTITLE_Register(); 75 76 if (!controlAtoms[ICONTITLE_CONTROL]) dprintf(("failed!!!")); 77 78 dprintf(("Register POPUPMENU class")); 79 controlAtoms[POPUPMENU_CONTROL] = POPUPMENU_Register(); 80 if (!controlAtoms[POPUPMENU_CONTROL]) dprintf(("failed!!!")); 76 81 } 77 82 … … 113 118 dprintf(("Unregister ICONTITLE class")); 114 119 if (!ICONTITLE_Unregister()) dprintf(("failed!!!")); 120 121 dprintf(("Unregister POPUPMENU class")); 122 if (!POPUPMENU_Unregister()) dprintf(("failed!!!")); 123 115 124 } 116 125
Note:
See TracChangeset
for help on using the changeset viewer.