Ignore:
Timestamp:
Nov 11, 1999, 2:17:33 PM (26 years ago)
Author:
sandervl
Message:

dlg fix, keyboard additions, + misc other things

File:
1 edited

Legend:

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

    r1622 r1704  
    1 /* $Id: win32dlg.cpp,v 1.32 1999-11-05 17:50:30 achimha Exp $ */
     1/* $Id: win32dlg.cpp,v 1.33 1999-11-11 13:17:31 sandervl Exp $ */
    22/*
    33 * Win32 Dialog Code for OS/2
     
    8585        }
    8686    }
     87
     88    //Set help id
     89    setWindowContextHelpId(dlgInfo.helpId);
    8790
    8891    /* Create dialog main window */
     
    209212        }
    210213    }
    211 
    212 //TODO:
    213 //    wndPtr->helpContext = helpId;
    214214
    215215    if (hUserFont)
     
    10211021    LONG oldval;
    10221022
     1023    dprintf2(("Win32Dialog::SetWindowLongA %x %d %x", getWindowHandle(), index, value));
    10231024    switch(index)
    10241025    {
    10251026    case DWL_DLGPROC:
    10261027        oldval = (LONG)Win32DlgProc;
    1027         Win32DlgProc = (DLGPROC)index;
     1028        Win32DlgProc = (DLGPROC)value;
    10281029        return oldval;
    10291030    case DWL_MSGRESULT:
     
    10431044ULONG Win32Dialog::GetWindowLongA(int index)
    10441045{
     1046    dprintf2(("Win32Dialog::GetWindowLongA %x %d", getWindowHandle(), index));
    10451047    switch(index)
    10461048    {
Note: See TracChangeset for help on using the changeset viewer.