X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/93cf77c076b699e8e0b3b0049bd4f80de15997dd..f377a3b58c509ceba8c9335dbe45d100cca615ad:/src/stubs/combobox.cpp diff --git a/src/stubs/combobox.cpp b/src/stubs/combobox.cpp index f1bbccaeb0..0be841bad4 100644 --- a/src/stubs/combobox.cpp +++ b/src/stubs/combobox.cpp @@ -114,3 +114,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; +}