Changeset 1542 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Nov 2, 1999, 6:07:25 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1540 r1542 1 /* $Id: win32wbase.cpp,v 1.7 1 1999-11-01 19:11:43 sandervlExp $ */1 /* $Id: win32wbase.cpp,v 1.72 1999-11-02 17:07:25 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1601 1601 case WM_SETTEXT: 1602 1602 { 1603 if(!fInternalMsg) 1603 if(!fInternalMsg) 1604 1604 { 1605 1605 LRESULT result; … … 2422 2422 HWND Win32BaseWindow::SetActiveWindow() 2423 2423 { 2424 return OSLibWinSetActiveWindow(OS2Hwnd );2424 return OSLibWinSetActiveWindow(OS2HwndFrame); 2425 2425 } 2426 2426 //****************************************************************************** … … 2429 2429 BOOL Win32BaseWindow::EnableWindow(BOOL fEnable) 2430 2430 { 2431 return OSLibWinEnableWindow(OS2Hwnd , fEnable);2431 return OSLibWinEnableWindow(OS2HwndFrame, fEnable); 2432 2432 } 2433 2433 //****************************************************************************** … … 2435 2435 BOOL Win32BaseWindow::CloseWindow() 2436 2436 { 2437 return OSLibWinMinimizeWindow(OS2Hwnd );2437 return OSLibWinMinimizeWindow(OS2HwndFrame); 2438 2438 } 2439 2439 //****************************************************************************** … … 2459 2459 BOOL Win32BaseWindow::IsWindowEnabled() 2460 2460 { 2461 return OSLibWinIsWindowEnabled(OS2Hwnd );2461 return OSLibWinIsWindowEnabled(OS2HwndFrame); 2462 2462 } 2463 2463 //****************************************************************************** … … 2468 2468 return (dwStyle & WS_VISIBLE) == WS_VISIBLE; 2469 2469 #else 2470 return OSLibWinIsWindowVisible(OS2Hwnd );2470 return OSLibWinIsWindowVisible(OS2HwndFrame); 2471 2471 #endif 2472 2472 }
Note:
See TracChangeset
for help on using the changeset viewer.