#ifndef _WX_SAMPLE_WIDGETS_ITEMCONTAINER_H_
#define _WX_SAMPLE_WIDGETS_ITEMCONTAINER_H_
-// for compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
-
#include "widgets.h"
+// define a common base class for sorted and normal string arrays
+#if wxUSE_STL
+ typedef wxBaseArrayStringBase wxMaybeSortedArrayString;
+#else
+ // in non-STL build wxSortedArrayString derives from wxArrayString
+ typedef wxArrayString wxMaybeSortedArrayString;
+#endif
+
class ItemContainerWidgetsPage : public WidgetsPage
{
public:
private:
void StartTest(const wxString& label);
- void EndTest(const wxArrayString& result);
+ void EndTest(const wxMaybeSortedArrayString& result);
// Track client data in wxItemContainer instances
wxClientData* CreateClientData(int value);
bool VerifyAllClientDataDestroyed();
bool VerifyClientData(wxUIntPtr i, const wxString& str);
- wxString DumpContainerData(const wxArrayString& expected) const;
+ wxString DumpContainerData(const wxMaybeSortedArrayString& expected) const;
wxArrayString m_items;
wxSortedArrayString m_itemsSorted;