]> git.saurik.com Git - wxWidgets.git/commitdiff
correct access for virtuals
authorPaul Cornett <paulcor@bullseye.com>
Wed, 10 May 2006 17:08:45 +0000 (17:08 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Wed, 10 May 2006 17:08:45 +0000 (17:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/combo.h
include/wx/odcombo.h

index a1ef01b2687b52a935628eff3ec2ee00912ba67b..b5fa3955f3863d0fda64adb28139fb77b3adf0d2 100644 (file)
@@ -177,9 +177,6 @@ public:
     virtual bool Enable(bool enable = true);
     virtual bool Show(bool show = true);
     virtual bool SetFont(const wxFont& font);
-#if wxUSE_TOOLTIPS
-    virtual void DoSetToolTip( wxToolTip *tip );
-#endif
 
     // wxTextCtrl methods - for readonly combo they should return
     // without errors.
@@ -404,6 +401,10 @@ protected:
     // Dispatches size event and refreshes
     void RecalcAndRefresh();
 
+#if wxUSE_TOOLTIPS
+    virtual void DoSetToolTip( wxToolTip *tip );
+#endif
+
     // Used by OnPaints of derived classes
     wxBitmap& GetBufferBitmap(const wxSize& sz) const;
 
index b5f65833d3bfa6064fcb206e1c16b0d6674a6e70..49abfd2046b26f625f440ce4640221cd8556354f 100644 (file)
@@ -90,9 +90,6 @@ public:
     // flags: wxCP_PAINTING_CONTROL is set if painting to combo control instead of list
     virtual void OnDrawItem( wxDC& dc, const wxRect& rect, int item, int flags ) const;
 
-    // Return item height
-    virtual wxCoord OnMeasureItem( size_t item ) const;
-
     // Return item width, or -1 for calculating from text extent (default)
     virtual wxCoord OnMeasureItemWidth( size_t item ) const;
 
@@ -139,6 +136,9 @@ protected:
     //virtual wxCoord OnMeasureItem(size_t n) const;
     void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const;
 
+    // Return item height
+    virtual wxCoord OnMeasureItem( size_t item ) const;
+
     // filter mouse move events happening outside the list box
     // move selection with cursor
     void OnMouseMove(wxMouseEvent& event);