]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/stattextg.h
Always define SIZEOF_WCHAR_T if it's not defined under Windows.
[wxWidgets.git] / include / wx / generic / stattextg.h
index ef225e12b2c8145e4a99e6740be7f14a2cbfeb5d..361c3dc0071643ae0fcb5378db51df933e10b978 100644 (file)
@@ -44,20 +44,21 @@ public:
                 const wxString& name = wxStaticTextNameStr);
 
 
-    virtual wxSize DoGetBestClientSize() const;
-    virtual wxSize DoGetBestSize() const;
-
+    // overridden base class virtual methods
     virtual void SetLabel(const wxString& label);
     virtual bool SetFont(const wxFont &font);
 
+protected:
+    virtual wxSize DoGetBestClientSize() const;
+
     virtual wxString DoGetLabel() const { return m_label; }
     virtual void DoSetLabel(const wxString& label);
 
-protected:
-    void OnPaint(wxPaintEvent& event);
     void DoSetSize(int x, int y, int width, int height, int sizeFlags);
 
 private:
+    void OnPaint(wxPaintEvent& event);
+
     wxString m_label;
     int m_mnemonic;