Ignore:
Timestamp:
Jul 10, 1999, 5:59:42 PM (26 years ago)
Author:
sandervl
Message:

Fixes for CreateWindowExW and several unicode menu apis

File:
1 edited

Legend:

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

    r254 r287  
    1 /* $Id: user32.cpp,v 1.17 1999-06-30 16:08:40 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.18 1999-07-10 15:57:31 sandervl Exp $ */
    22
    33/*
     
    14921492
    14931493  /* @@@PH 98/06/21 changed to call OS2CreateWindowExA */
    1494   if((int)arg2 >> 16 != 0)
     1494  if(HIWORD(arg2) != 0)
    14951495    astring1 = UnicodeToAsciiString((LPWSTR)arg2);
    14961496  else
     
    15321532        FreeAsciiString(astring1);
    15331533
    1534     FreeAsciiString(astring2);
     1534    if(HIWORD(arg2) != 0)
     1535        FreeAsciiString(astring2);
    15351536
    15361537#ifdef DEBUG
Note: See TracChangeset for help on using the changeset viewer.