Changeset 4848 for trunk/src/user32/caret.cpp
- Timestamp:
- Dec 29, 2000, 7:41:23 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/caret.cpp
r4825 r4848 1 /* $Id: caret.cpp,v 1.1 4 2000-12-17 15:04:09sandervl Exp $ */1 /* $Id: caret.cpp,v 1.15 2000-12-29 18:39:58 sandervl Exp $ */ 2 2 3 3 /* … … 20 20 #include <win32api.h> 21 21 #include <winconst.h> 22 #include <winuser32.h> 22 23 #include <wprocess.h> 23 24 #include <misc.h> … … 230 231 CaretIsVisible++; 231 232 if (CaretIsVisible == 1) 232 rc = _ShowCaret (Win32 BaseWindow::Win32ToOS2Handle (hwnd));233 rc = _ShowCaret (Win32ToOS2Handle (hwnd)); 233 234 else 234 235 rc = TRUE; … … 245 246 CaretIsVisible--; 246 247 if (CaretIsVisible == 0) 247 rc = _HideCaret (Win32 BaseWindow::Win32ToOS2Handle (hwnd));248 rc = _HideCaret (Win32ToOS2Handle (hwnd)); 248 249 else 249 250 rc = TRUE; … … 265 266 SetCaretPos (CaretPosX, CaretPosY); 266 267 if (CaretIsVisible > 0) 267 _ShowCaret(Win32 BaseWindow::Win32ToOS2Handle(hwndCaret));268 } 269 } 268 _ShowCaret(Win32ToOS2Handle(hwndCaret)); 269 } 270 }
Note:
See TracChangeset
for help on using the changeset viewer.