- Timestamp:
- Sep 6, 2002, 2:31:42 PM (23 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/caret.cpp
r5935 r9217 1 /* $Id: caret.cpp,v 1.1 8 2001-06-09 14:50:16sandervl Exp $ */1 /* $Id: caret.cpp,v 1.19 2002-09-06 12:31:40 sandervl Exp $ */ 2 2 3 3 /* … … 66 66 if (!wnd) return (FALSE); 67 67 68 wnd->SetFakeOpen32();69 70 68 rc = O32_CreateCaret (wnd->getOS2WindowHandle(), hBmp, width, height); 71 69 if (rc) … … 78 76 } 79 77 80 wnd->RemoveFakeOpen32();81 78 RELEASE_WNDOBJ(wnd); 82 79 return (rc); -
trunk/src/user32/edit.cpp
r9023 r9217 1 /* $Id: edit.cpp,v 1.4 6 2002-08-17 10:33:54sandervl Exp $ */1 /* $Id: edit.cpp,v 1.47 2002-09-06 12:31:40 sandervl Exp $ */ 2 2 /* 3 3 * Edit control … … 3273 3273 */ 3274 3274 FillRect(dc, &rc, brush); 3275 ShowCaret(hwnd); 3275 3276 return -1; 3276 3277 } -
trunk/src/user32/win32wbase.cpp
r9143 r9217 1 /* $Id: win32wbase.cpp,v 1.33 7 2002-08-27 09:30:50sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.338 2002-09-06 12:31:41 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 716 716 #endif 717 717 718 fakeWinBase.hwndThis = OS2Hwnd;719 fakeWinBase.pWindowClass = windowClass;720 721 718 //Set icon from window or class 722 719 if (hIcon) -
trunk/src/user32/win32wbase.h
r9101 r9217 1 /* $Id: win32wbase.h,v 1.14 4 2002-08-23 15:06:01sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.145 2002-09-06 12:31:42 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 17 17 18 18 #include <win32class.h> 19 #include "open32wbase.h"20 19 #include <gen_object.h> 21 20 #include <win32wndchild.h> … … 519 518 520 519 public: 521 void SetFakeOpen32() { WinSetDAXData (OS2Hwnd, &fakeWinBase); }522 void RemoveFakeOpen32() { WinSetDAXData (OS2Hwnd, NULL); }523 524 fakeOpen32WinBaseClass fakeWinBase;525 520 526 521 VOID AdjustMaximizedRect(LPRECT rect);
Note:
See TracChangeset
for help on using the changeset viewer.