Changeset 2145 for trunk/src


Ignore:
Timestamp:
Dec 19, 1999, 8:55:41 PM (26 years ago)
Author:
sandervl
Message:

SendMessageW bugfix

File:
1 edited

Legend:

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

    r2140 r2145  
    1 /* $Id: win32wbase.cpp,v 1.115 1999-12-19 17:46:25 cbratschi Exp $ */
     1/* $Id: win32wbase.cpp,v 1.116 1999-12-19 19:55:41 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    282282BOOL Win32BaseWindow::IsWindowUnicode()
    283283{
    284 //    dprintf2(("IsWindowUnicode %x %d", getWindowHandle(), WINPROC_GetProcType(getWindowProc()) == WIN_PROC_32W));
     284    dprintf2(("IsWindowUnicode %x %d", getWindowHandle(), WINPROC_GetProcType(getWindowProc()) == WIN_PROC_32W));
    285285    return (WINPROC_GetProcType(getWindowProc()) == WIN_PROC_32W);
    286286}
     
    19561956    //if the destination window is created by this process & thread, call window proc directly
    19571957    if(dwProcessId == currentProcessId && dwThreadId == GetCurrentThreadId()) {
    1958         return SendInternalMessageA(Msg, wParam, lParam);
     1958        return SendInternalMessageW(Msg, wParam, lParam);
    19591959    }
    19601960    //otherwise use WinSendMsg to send it to the right process/thread
Note: See TracChangeset for help on using the changeset viewer.