Moved wxArrayString::GetStringArray() out of

WXWIN_COMPATIBILITY_2_4 (at least until alternatives are available).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2003-12-13 16:59:31 +00:00
parent e13854762b
commit 2442ce1bf1

View File

@@ -151,13 +151,11 @@ public:
return Item(Count() - 1); return Item(Count() - 1);
} }
#if WXWIN_COMPATIBILITY_2_4
// return a wxString[], useful for the controls which // return a wxString[], useful for the controls which
// take one in their ctor. You must delete[] it yourself // take one in their ctor. You must delete[] it yourself
// once you are done with it. Will return NULL if the // once you are done with it. Will return NULL if the
// ArrayString was empty. // ArrayString was empty.
wxString* GetStringArray() const; wxString* GetStringArray() const;
#endif
// item management // item management
// Search the element in the array, starting from the beginning if // Search the element in the array, starting from the beginning if