- Timestamp:
- May 16, 2001, 9:42:26 AM (24 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r5713 r5721 1 /* $Id: oslibwin.cpp,v 1.9 3 2001-05-15 14:31:38sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.94 2001-05-16 07:42:26 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 724 724 //****************************************************************************** 725 725 //****************************************************************************** 726 BOOL OSLibWinEnableWindowUpdate(HWND hwnd,BOOL fEnable) 727 { 728 return WinEnableWindowUpdate(hwnd,fEnable); 726 BOOL OSLibWinEnableWindowUpdate(HWND hwndFrame, HWND hwndClient ,BOOL fEnable) 727 { 728 WinEnableWindowUpdate(hwndFrame, fEnable); 729 return WinEnableWindowUpdate(hwndClient, fEnable); 729 730 } 730 731 //****************************************************************************** -
trunk/src/user32/oslibwin.h
r5685 r5721 1 /* $Id: oslibwin.h,v 1.5 4 2001-05-11 08:39:43sandervl Exp $ */1 /* $Id: oslibwin.h,v 1.55 2001-05-16 07:42:26 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 281 281 #define HTOS_ERROR (-3) 282 282 283 BOOL OSLibWinEnableWindowUpdate(HWND hwnd,BOOL fEnable);283 BOOL OSLibWinEnableWindowUpdate(HWND hwndFrame, HWND hwndClient ,BOOL fEnable); 284 284 ULONG OSLibWinGetLastError(); 285 285 -
trunk/src/user32/win32wbase.cpp
r5713 r5721 1 /* $Id: win32wbase.cpp,v 1.25 6 2001-05-15 14:31:39sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.257 2001-05-16 07:42:26 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1420 1420 setStyle(getStyle() | WS_VISIBLE); 1421 1421 dprintf(("Enable window update for %x", getWindowHandle())); 1422 OSLibWinEnableWindowUpdate(OS2Hwnd ,TRUE);1422 OSLibWinEnableWindowUpdate(OS2HwndFrame, OS2Hwnd, TRUE); 1423 1423 } 1424 1424 else … … 1428 1428 setStyle(getStyle() & ~WS_VISIBLE); 1429 1429 dprintf(("Disable window update for %x", getWindowHandle())); 1430 OSLibWinEnableWindowUpdate(OS2Hwnd ,FALSE);1430 OSLibWinEnableWindowUpdate(OS2HwndFrame, OS2Hwnd, FALSE); 1431 1431 } 1432 1432 }
Note:
See TracChangeset
for help on using the changeset viewer.