]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/combobox.cpp
another compile problem fixed
[wxWidgets.git] / src / stubs / combobox.cpp
index f1bbccaeb0f0f3b0b0faec3b7ae8e815ba9f460d..568529db54db70b87f24ce8c72085edb0bfff1d2 100644 (file)
@@ -15,9 +15,7 @@
 
 #include "wx/combobox.h"
 
-#if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl)
-#endif
 
 bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
            const wxString& value,
@@ -114,3 +112,52 @@ void wxComboBox::SetSelection(long from, long to)
     // TODO
 }
 
+void wxComboBox::Append(const wxString& item)
+{
+    // TODO
+}
+
+void wxComboBox::Delete(int n)
+{
+    // TODO
+}
+
+void wxComboBox::Clear()
+{
+    // TODO
+}
+
+int wxComboBox::GetSelection() const
+{
+    // TODO
+    return -1;
+}
+
+void wxComboBox::SetSelection(int n)
+{
+    // TODO
+}
+
+int wxComboBox::FindString(const wxString& s) const
+{
+    // TODO
+    return -1;
+}
+
+wxString wxComboBox::GetString(int n) const
+{
+    // TODO
+    return wxString("");
+}
+
+wxString wxComboBox::GetStringSelection() const
+{
+    // TODO
+    return wxString("");
+}
+
+bool wxComboBox::SetStringSelection(const wxString& sel)
+{
+    // TODO
+    return FALSE;
+}