Ignore:
Timestamp:
Jan 2, 2003, 6:02:06 PM (23 years ago)
Author:
sandervl
Message:

corrected regressions caused by previous setfocus fix; make sure owner isn't disabled when specifying SWP_DEACTIVATE

File:
1 edited

Legend:

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

    r9589 r9590  
    1 /* $Id: oslibwin.cpp,v 1.135 2003-01-02 15:21:58 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.136 2003-01-02 17:02:04 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    734734   //SvL: Must also deactivate the window when hiding it or else focus won't
    735735   //     change. (NOTE: make sure this doesn't cause regressions (01-02-2003)
    736    if (  fuFlags & SWP_HIDEWINDOW_W)  flags |= SWP_HIDE|SWP_DEACTIVATE;
     736   if (  fuFlags & SWP_HIDEWINDOW_W) {
     737       flags |= SWP_HIDE|SWP_DEACTIVATE;
     738   }
    737739
    738740   if (  fuFlags & SWP_NOSENDCHANGING_W) flags |= SWP_NOADJUST;
Note: See TracChangeset for help on using the changeset viewer.