Changeset 2657 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Feb 5, 2000, 3:08:54 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r2636 r2657 1 /* $Id: win32wbase.cpp,v 1.15 1 2000-02-04 17:17:56 cbratschiExp $ */1 /* $Id: win32wbase.cpp,v 1.152 2000-02-05 14:08:53 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 126 126 127 127 pOldFrameProc = NULL; 128 borderWidth = 0;129 borderHeight = 0;130 128 131 129 hwndLinkAfter = HWND_BOTTOM; … … 483 481 } 484 482 485 DWORD dwOSWinStyle , dwOSFrameStyle;486 487 OSLibWinConvertStyle(dwStyle, &dwExStyle, &dwOSWinStyle , &dwOSFrameStyle, &borderWidth, &borderHeight);483 DWORD dwOSWinStyle; 484 485 OSLibWinConvertStyle(dwStyle, &dwExStyle, &dwOSWinStyle); 488 486 489 487 if(HIWORD(cs->lpszName)) … … 2733 2731 setStyle(ss.styleNew); 2734 2732 SendInternalMessageA(WM_STYLECHANGED,GWL_STYLE,(LPARAM)&ss); 2733 OSLibSetWindowStyle(getOS2FrameWindowHandle(), getStyle(), getExStyle(), 2734 windowClass->getStyle() & CS_SAVEBITS); 2735 2735 #ifdef DEBUG 2736 2736 PrintWindowStyle(ss.styleNew, 0); … … 2740 2740 case GWL_WNDPROC: 2741 2741 oldval = (LONG)WINPROC_GetProc(win32wndproc, (fUnicode) ? WIN_PROC_32W : WIN_PROC_32A); 2742 //WINPROC_SetProc((HWINDOWPROC *)&win32wndproc, (WNDPROC)value, (fUnicode) ? WIN_PROC_32W : WIN_PROC_32A, WIN_PROC_WINDOW);2743 2742 WINPROC_SetProc((HWINDOWPROC *)&win32wndproc, (WNDPROC)value, WINPROC_GetProcType(win32wndproc), WIN_PROC_WINDOW); 2744 2743 return oldval; 2744 2745 2745 case GWL_HINSTANCE: 2746 2746 oldval = hInstance; 2747 2747 hInstance = value; 2748 2748 return oldval; 2749 2749 2750 case GWL_HWNDPARENT: 2750 2751 return SetParent((HWND)value); 2752 2751 2753 case GWL_ID: 2752 2754 oldval = getWindowId(); 2753 2755 setWindowId(value); 2754 2756 return oldval; 2757 2755 2758 case GWL_USERDATA: 2756 2759 oldval = userData; 2757 2760 userData = value; 2758 2761 return oldval; 2762 2759 2763 default: 2760 2764 if(index >= 0 && index/4 < nrUserWindowLong)
Note:
See TracChangeset
for help on using the changeset viewer.