Ignore:
Timestamp:
Dec 9, 1999, 1:54:05 AM (26 years ago)
Author:
sandervl
Message:

Unicode <-> Ascii translation changes + fixes for window procedures

File:
1 edited

Legend:

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

    r1513 r2033  
    1 /* $Id: win32wmdichild.cpp,v 1.9 1999-10-30 09:19:46 sandervl Exp $ */
     1/* $Id: win32wmdichild.cpp,v 1.10 1999-12-09 00:53:38 sandervl Exp $ */
    22/*
    33 * Win32 MDI Child Window Class for OS/2
     
    4343//******************************************************************************
    4444//******************************************************************************
    45 Win32MDIChildWindow::Win32MDIChildWindow(CREATESTRUCTA *lpCreateStructA, ATOM classAtom, BOOL isUnicode)
     45Win32MDIChildWindow::Win32MDIChildWindow(CREATESTRUCTA *lpCreateStructA, ATOM classAtom, BOOL fUnicode)
    4646                    : Win32BaseWindow(OBJTYPE_WINDOW)
    4747{
    48     this->isUnicode = isUnicode;
     48    isUnicode = fUnicode;
    4949    CreateWindowExA(lpCreateStructA, classAtom);
    5050}
Note: See TracChangeset for help on using the changeset viewer.