Ignore:
Timestamp:
Jul 24, 1999, 2:40:20 PM (26 years ago)
Author:
cbratschi
Message:

combobox, listbox ported

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/controls.cpp

    r373 r384  
    1 /* $Id: controls.cpp,v 1.6 1999-07-23 16:46:29 cbratschi Exp $ */
     1/* $Id: controls.cpp,v 1.7 1999-07-24 12:40:20 cbratschi Exp $ */
    22/* File: controls.cpp -- Win32 common controls
    33 *
     
    1414#include "static.h"
    1515#include "scroll.h"
     16#include "combo.H" //listbox included
    1617
    1718/* registration */
     
    2728  dprintf(("Register SCROLLBAR class"));
    2829  if (!SCROLLBAR_Register()) dprintf(("failed!!!"));
     30
     31  dprintf(("Register LISTBOX class"));
     32  if (!LISTBOX_Register()) dprintf(("failed!!!"));
     33
     34  dprintf(("Register COMBOLBOX class"));
     35  if (!COMBOLBOX_Register()) dprintf(("failed!!!"));
     36
     37  dprintf(("Register COMBOBOX class"));
     38  if (!COMBOBOX_Register()) dprintf(("failed!!!"));
    2939}
    3040
     
    3949  dprintf(("Unregister SCROLLBAR class"));
    4050  if (!SCROLLBAR_Unregister()) dprintf(("failed!!!"));
     51
     52  dprintf(("Unregister LISTBOX class"));
     53  if (!LISTBOX_Unregister()) dprintf(("failed!!!"));
     54
     55  dprintf(("Unregister COMBOLBOX class"));
     56  if (!COMBOLBOX_Unregister()) dprintf(("failed!!!"));
     57
     58  dprintf(("Unregister COMBOBOX class"));
     59  if (!COMBOBOX_Unregister()) dprintf(("failed!!!"));
    4160}
    4261
Note: See TracChangeset for help on using the changeset viewer.