]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/caret.h
fixed wxBase and GUI separation for sockets code
[wxWidgets.git] / include / wx / msw / caret.h
index c42da02842f40175746bb8b98a918304a96a2d22..19d91f4bcf5784dfcc80761fe385343768e3bb8f 100644 (file)
@@ -31,7 +31,7 @@ public:
         // same as above
     wxCaret(wxWindowBase *window, const wxSize& size)
     {
-        wxCaretBase::Init();
+        Init();
 
         (void)Create(window, size);
     }
@@ -52,12 +52,15 @@ protected:
     virtual void DoMove();
     virtual void DoShow();
     virtual void DoHide();
+    virtual void DoSize();
 
     // helper function which creates the system caret
     bool MSWCreateCaret();
 
 private:
     bool m_hasCaret;
+
+    DECLARE_NO_COPY_CLASS(wxCaret)
 };
 
 #endif // _WX_CARET_H_