X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d6c9c1b71e069396bbe3850862de9aa10e6812e0..ff1865910312d960737474a75a77737d5ce94864:/include/wx/generic/choicdgg.h diff --git a/include/wx/generic/choicdgg.h b/include/wx/generic/choicdgg.h index ff12c18d92..c1f264b3bb 100644 --- a/include/wx/generic/choicdgg.h +++ b/include/wx/generic/choicdgg.h @@ -105,7 +105,7 @@ public: void OnListBoxDClick(wxCommandEvent& event); // old, deprecated methods -#ifdef WXWIN_COMPATIBILITY_2 +#if WXWIN_COMPATIBILITY_2 wxSingleChoiceDialog(wxWindow *parent, const wxString& message, const wxString& caption, @@ -164,14 +164,13 @@ public: wxArrayInt GetSelections() const { return m_selections; } // implementation from now on - void OnOK(wxCommandEvent& event); + virtual bool TransferDataFromWindow(); protected: wxArrayInt m_selections; private: DECLARE_DYNAMIC_CLASS(wxMultiChoiceDialog) - DECLARE_EVENT_TABLE() }; // ---------------------------------------------------------------------------- @@ -272,6 +271,8 @@ WXDLLEXPORT size_t wxGetMultipleChoices(wxArrayInt& selections, // deprecated // ---------------------------------------------------------------------------- +#if WXWIN_COMPATIBILITY_2 + WXDLLEXPORT wxString wxGetSingleChoice(const wxString& message, const wxString& caption, int n, wxChar *choices[], @@ -303,5 +304,7 @@ WXDLLEXPORT void* wxGetSingleChoiceData(const wxString& message, int height = wxCHOICE_HEIGHT); +#endif // WXWIN_COMPATIBILITY_2 + #endif // __CHOICEDLGH_G__