]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/combobox.h
Nuke GTK1 from include/gtk
[wxWidgets.git] / include / wx / combobox.h
index 578801b858e189f8991e038cc4657c9f7990757f..2a7ffa1faba8df4c1c76fefca0fe04dd94f043bf 100644 (file)
@@ -16,7 +16,7 @@
 
 #if wxUSE_COMBOBOX
 
-extern WXDLLEXPORT_DATA(const wxChar*) wxComboBoxNameStr;
+extern WXDLLEXPORT_DATA(const wxChar) wxComboBoxNameStr[];
 
 // ----------------------------------------------------------------------------
 // wxComboBoxBase: this interface defines the methods wxComboBox must implement
@@ -59,6 +59,10 @@ public:
     virtual bool CanUndo() const = 0;
     virtual bool CanRedo() const = 0;
 
+
+    // redeclare inherited SetSelection() overload here as well to avoid
+    // virtual function hiding
+    virtual void SetSelection(int n) = 0;
 };
 
 // ----------------------------------------------------------------------------