Ignore:
Timestamp:
Jan 10, 2000, 6:18:13 PM (26 years ago)
Author:
cbratschi
Message:

activated menu code

File:
1 edited

Legend:

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

    r2292 r2396  
    1 /* $Id: controls.cpp,v 1.14 2000-01-02 19:30:42 cbratschi Exp $ */
     1/* $Id: controls.cpp,v 1.15 2000-01-10 17:18:07 cbratschi Exp $ */
    22/* File: controls.cpp -- Win32 common controls
    33 *
     
    1919#include "winswitch.h"
    2020#include "icontitle.h"
     21#include "menu.h"
    2122#include "controls.h"
    2223
     
    7475  controlAtoms[ICONTITLE_CONTROL] = ICONTITLE_Register();
    7576  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!!!"));
    7681}
    7782
     
    113118  dprintf(("Unregister ICONTITLE class"));
    114119  if (!ICONTITLE_Unregister()) dprintf(("failed!!!"));
     120
     121  dprintf(("Unregister POPUPMENU class"));
     122  if (!POPUPMENU_Unregister()) dprintf(("failed!!!"));
     123
    115124}
    116125
Note: See TracChangeset for help on using the changeset viewer.