Ignore:
Timestamp:
Oct 5, 2000, 8:37:26 PM (25 years ago)
Author:
sandervl
Message:

GetWindow + z-order bugfixes

File:
1 edited

Legend:

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

    r3803 r4434  
    1 /* $Id: oslibwin.cpp,v 1.82 2000-07-06 21:17:57 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.83 2000-10-05 18:37:25 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    8585  FCData.flCreateFlags = dwFrameStyle;
    8686
    87   dprintf(("WinCreateWindow %x %s %x task %d shell %d classstyle %x winstyle %x", hwndParent, pszName, id, fTaskList, fShellPosition, classStyle, dwWinStyle));
    88 
    89 #if 0
    90   return WinCreateWindow (hwndParent,
    91 //                          TopLevel ? WIN32_STDFRAMECLASS : WIN32_STDCLASS,
    92                           WIN32_STDFRAMECLASS,
    93                           pszName, dwWinStyle, 0, 0, 0, 0,
    94                           Owner, HWND_TOP,
    95                           id, &FCData, NULL);
    96 #else
     87  dprintf(("WinCreateWindow %x %s %x task %d shell %d classstyle %x winstyle %x bottom %d", hwndParent, pszName, id, fTaskList, fShellPosition, classStyle, dwWinStyle, fHWND_BOTTOM));
     88
    9789  return WinCreateWindow (hwndParent,
    9890                          WIN32_STDFRAMECLASS,
    9991                          pszName, dwWinStyle, 0, 0, 0, 0,
    100                           Owner, HWND_TOP,
     92                          Owner, (fHWND_BOTTOM) ? HWND_BOTTOM : HWND_TOP,
    10193                          id, NULL, NULL);
    102 #endif
    10394}
    10495//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.