Ignore:
Timestamp:
Feb 20, 2000, 7:28:35 PM (26 years ago)
Author:
cbratschi
Message:

WM_EX_CONTEXTHELP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.cpp

    r2805 r2834  
    1 /* $Id: win32wbase.cpp,v 1.164 2000-02-16 17:21:06 cbratschi Exp $ */
     1/* $Id: win32wbase.cpp,v 1.165 2000-02-20 18:28:34 cbratschi Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    5050#include "timer.h"
    5151
    52 #define DBG_LOCALLOG    DBG_win32wbase
     52#define DBG_LOCALLOG    DBG_win32wbase
    5353#include "dbglocal.h"
    5454
     
    608608        else {
    609609                if (windowClass->getMenuNameA()) {
    610                         cs->hMenu = LoadMenuA(cs->hInstance, windowClass->getMenuNameA());
     610                        cs->hMenu = LoadMenuA(windowClass->getInstance(),windowClass->getMenuNameA());
     611#if 0 //CB: hack for treeview test cases bug
     612if (!cs->hMenu) cs->hMenu = LoadMenuA(windowClass->getInstance(),"MYAPP");
     613#endif
    611614                        if (cs->hMenu) ::SetMenu(getWindowHandle(), cs->hMenu );
    612615                }
     
    15871590        return 0;
    15881591
     1592#if 0 //CB: todo: MSDN docu: Windown handles these messages and not WM_SYSCHAR (the code below doesn't work)
     1593    case WM_KEYDOWN:
     1594    case WM_KEYUP:
     1595    case WM_SYSKEYDOWN:
     1596    case WM_SYSKEYUP:
     1597#endif
     1598
    15891599    case WM_SYSCHAR:
    15901600    {
     
    16081618            break;
    16091619    }
     1620
    16101621    case WM_SETHOTKEY:
    16111622        hotkey = wParam;
Note: See TracChangeset for help on using the changeset viewer.