Ignore:
Timestamp:
Jun 12, 2001, 8:25:11 PM (24 years ago)
Author:
sandervl
Message:

logging fix for CreateWindowExW + fix for dialog template parsing

File:
1 edited

Legend:

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

    r5935 r5977  
    1 /* $Id: window.cpp,v 1.99 2001-06-09 14:50:25 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.100 2001-06-12 18:25:11 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    164164       return 0;
    165165    }
    166 
     166#ifdef DEBUG
    167167    if(HIWORD(className)) {
    168          dprintf(("CreateWindowExW: class %ls name %x parent %x (%d,%d) (%d,%d), %x %x", className, windowName, parent, x, y, width, height, style, exStyle));
    169     }
    170     else dprintf(("CreateWindowExW: class %d name %x parent %x (%d,%d) (%d,%d), %x %x", className, windowName, parent, x, y, width, height, style, exStyle));
    171 
     168         dprintf(("CreateWindowExW: class %ls name %ls parent %x (%d,%d) (%d,%d), %x %x", className, HIWORD(windowName) ? windowName : NULL, parent, x, y, width, height, style, exStyle));
     169    }
     170    else dprintf(("CreateWindowExW: class %d name %ls parent %x (%d,%d) (%d,%d), %x %x", className, HIWORD(windowName) ? windowName : NULL, parent, x, y, width, height, style, exStyle));
     171#endif
    172172    if (!HIWORD(className))
    173173    {
Note: See TracChangeset for help on using the changeset viewer.