]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/combobox.h
Changed function to SetFitToCurrentPage
[wxWidgets.git] / include / wx / msw / combobox.h
index 27caec6e34bcf8212b9ad71350911d84c2c9e76a..0ef87a536a301f63d15a2151195690f1a2375f09 100644 (file)
 #ifndef _WX_COMBOBOX_H_
 #define _WX_COMBOBOX_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma interface "combobox.h"
-#endif
-
 #include "wx/choice.h"
 
 #if wxUSE_COMBOBOX
@@ -95,12 +91,12 @@ public:
     virtual wxTextPos GetLastPosition() const;
     virtual void Replace(long from, long to, const wxString& value);
     virtual void Remove(long from, long to);
-    virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
+    virtual void SetSelection(int n);
     virtual void SetSelection(long from, long to);
     virtual int GetSelection() const;
     virtual void GetSelection(long* from, long* to) const;
     virtual void SetEditable(bool editable);
-    virtual void Clear() { wxChoice::Clear(); m_selectionOld = -1; }
+    virtual void Clear();
 
     virtual void Undo() ;
     virtual void Redo() ;
@@ -136,9 +132,6 @@ public:
 
 protected:
     virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
-    virtual void DoSetSize(int x, int y,
-                           int width, int height,
-                           int sizeFlags = wxSIZE_AUTO);
 
     // common part of all ctors
     void Init() { m_selectionOld = -1; }