Changeset 1433 for trunk/src/user32/controls.cpp
- Timestamp:
- Oct 25, 1999, 12:56:11 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/controls.cpp
r1365 r1433 1 /* $Id: controls.cpp,v 1. 4 1999-10-19 19:26:07sandervl Exp $ */1 /* $Id: controls.cpp,v 1.5 1999-10-24 22:56:01 sandervl Exp $ */ 2 2 /* File: controls.cpp -- Win32 common controls 3 3 * … … 19 19 #include "controls.h" 20 20 21 ATOM controlAtoms[MAX_CONTROLS] = {0};21 ATOM controlAtoms[MAX_CONTROLS] = {0}; 22 22 23 23 /* registration */ … … 25 25 void CONTROLS_Register() 26 26 { 27 //TODO: Remove this once we replace the atom code in kernel3228 //Delete all Open32 global class atoms and recreate them29 ATOM atom;30 31 atom = GlobalFindAtomA(BUTTONCLASSNAME);32 if(atom) GlobalDeleteAtom(atom);33 atom = GlobalFindAtomA(STATICCLASSNAME);34 if(atom) GlobalDeleteAtom(atom);35 atom = GlobalFindAtomA(SCROLLBARCLASSNAME);36 if(atom) GlobalDeleteAtom(atom);37 atom = GlobalFindAtomA(LISTBOXCLASSNAME);38 if(atom) GlobalDeleteAtom(atom);39 atom = GlobalFindAtomA(COMBOLBOXCLASSNAME);40 if(atom) GlobalDeleteAtom(atom);41 atom = GlobalFindAtomA(COMBOBOXCLASSNAME);42 if(atom) GlobalDeleteAtom(atom);43 atom = GlobalFindAtomA(EDITCLASSNAME);44 if(atom) GlobalDeleteAtom(atom);45 atom = GlobalFindAtomA(MDICLIENTCLASSNAMEA);46 if(atom) GlobalDeleteAtom(atom);47 //END to be removed code48 49 27 dprintf(("Register BUTTON class")); 50 28 controlAtoms[BUTTON_CONTROL] = BUTTON_Register();
Note:
See TracChangeset
for help on using the changeset viewer.