Changeset 9866 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Feb 27, 2003, 3:22:45 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r9818 r9866 1 /* $Id: win32wbase.cpp,v 1.3 59 2003-02-17 13:40:11sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.360 2003-02-27 14:22:44 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 3760 3760 setExStyle(ss.styleNew); 3761 3761 SendMessageA(getWindowHandle(),WM_STYLECHANGED,GWL_EXSTYLE,(LPARAM)&ss); 3762 OSLibSetWindowStyle(getOS2FrameWindowHandle(), getOS2WindowHandle(), getStyle(), getExStyle()); 3762 3763 OSLibSetWindowStyle(getOS2FrameWindowHandle(), getOS2WindowHandle(), 3764 getStyle(), getExStyle(),ss.styleOld); 3765 3763 3766 oldval = ss.styleOld; 3764 3767 break; … … 3767 3770 { 3768 3771 STYLESTRUCT ss; 3769 3772 3770 3773 //SvL: TODO: Can you change minimize or maximize status here too? 3771 3774 … … 3782 3785 setStyle(ss.styleNew); 3783 3786 SendMessageA(getWindowHandle(),WM_STYLECHANGED,GWL_STYLE,(LPARAM)&ss); 3784 OSLibSetWindowStyle(getOS2FrameWindowHandle(), getOS2WindowHandle(), 3785 getStyle(), getExStyle()); 3787 3788 OSLibSetWindowStyle(getOS2FrameWindowHandle(), getOS2WindowHandle(), 3789 getStyle(), getExStyle(),ss.styleOld); 3786 3790 3787 3791 //TODO: Might not be correct to use ShowWindow here
Note:
See TracChangeset
for help on using the changeset viewer.