]> git.saurik.com Git - wxWidgets.git/commitdiff
Trying out addition of SetSize to wxCaret...
authorRobin Dunn <robin@alldunn.com>
Fri, 7 Jan 2000 05:42:30 +0000 (05:42 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 7 Jan 2000 05:42:30 +0000 (05:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5285 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/caret.h

index f16884bd9035f7d485bfc36ad2efec3865e88242..5a2926285a3119e6559f4513da58fb926169a8f8 100644 (file)
@@ -95,6 +95,11 @@ public:
         // get the window we're associated with
     wxWindow *GetWindow() const { return (wxWindow *)m_window; }
 
+        // change the size of the caret
+    void SetSize(int width, int height) { m_width = width; m_height = height; }
+    void SetSize(const wxSize& size) { SetSize(size.x, size.y); }
+
+
     // operations
     // ----------