Ignore:
Timestamp:
Oct 8, 1999, 11:30:52 PM (26 years ago)
Author:
cbratschi
Message:

SendDlgItemMessage fixed

File:
1 edited

Legend:

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

    r949 r1205  
    1 /* $Id: windlgmsg.cpp,v 1.1 1999-09-15 23:19:02 sandervl Exp $ */
     1/* $Id: windlgmsg.cpp,v 1.2 1999-10-08 21:30:52 cbratschi Exp $ */
    22/*
    33 * Win32 dialog message APIs for OS/2
     
    2727
    2828    dialog = (Win32Dialog *)Win32BaseWindow::GetWindowFromHandle(hwnd);
    29     if(!dialog || !dialog->IsDialog()) {
     29    if(!dialog) {
    3030        dprintf(("SendDlgItemMessageA, window %x not found", hwnd));
    3131        return 0;
     
    4545
    4646    dialog = (Win32Dialog *)Win32BaseWindow::GetWindowFromHandle(hwnd);
    47     if(!dialog || !dialog->IsDialog()) {
     47    if(!dialog) {
    4848        dprintf(("SendDlgItemMessageW, window %x not found", hwnd));
    4949        return 0;
Note: See TracChangeset for help on using the changeset viewer.