Ignore:
Timestamp:
Jul 24, 1999, 7:10:26 PM (26 years ago)
Author:
cbratschi
Message:

edit control

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:20 cbratschi Exp $ */
     1/* $Id: controls.cpp,v 1.8 1999-07-24 17:10:24 cbratschi Exp $ */
    22/* File: controls.cpp -- Win32 common controls
    33 *
     
    1414#include "static.h"
    1515#include "scroll.h"
    16 #include "combo.H" //listbox included
     16#include "combo.H" //listbox,combo,edit
    1717
    1818/* registration */
     
    3737  dprintf(("Register COMBOBOX class"));
    3838  if (!COMBOBOX_Register()) dprintf(("failed!!!"));
     39
     40  dprintf(("Register EDIT class"));
     41  if (!EDIT_Register()) dprintf(("failed!!!"));
    3942}
    4043
     
    5861  dprintf(("Unregister COMBOBOX class"));
    5962  if (!COMBOBOX_Unregister()) dprintf(("failed!!!"));
     63
     64  dprintf(("Unregister EDIT class"));
     65  if (!EDIT_Unregister()) dprintf(("failed!!!"));
    6066}
    6167
Note: See TracChangeset for help on using the changeset viewer.