]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/gauge.h
fixed somebody's typo in a preprocessor directive (&6 --> &&)
[wxWidgets.git] / include / wx / motif / gauge.h
index ff8dfa00ad1084ae15c2fb78749b1d4b1054bc0a..81413b04880f6a3a0b632ddaaf4bc13c3d75210e 100644 (file)
@@ -57,6 +57,10 @@ class WXDLLEXPORT wxGauge: public wxControl
   int GetValue() const ;
 
   void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
+  virtual void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
+    { wxWindow::SetSize(rect, sizeFlags); }
+  virtual void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
+  virtual void SetSize(int width, int height) { SetSize(-1, -1, width, height, wxSIZE_USE_EXISTING); }
 
   virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;