// constants
// ----------------------------------------------------------------------------
-extern WXDLLEXPORT_DATA(const wxChar) wxListCtrlNameStr[];
+extern WXDLLEXPORT_DATA(const char) wxListCtrlNameStr[];
// ----------------------------------------------------------------------------
// include the wxListCtrl class declaration
// ----------------------------------------------------------------------------
-#if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
- #include "wx/generic/listctrl.h"
-#endif
-
#if defined(__WIN32__) && !defined(__WXUNIVERSAL__)
#include "wx/msw/listctrl.h"
-#elif defined(__WXMAC__)
+#elif defined(__WXMAC__) && !defined(__WXUNIVERSAL__)
#include "wx/mac/carbon/listctrl.h"
+#else
+ #include "wx/generic/listctrl.h"
#endif
// ----------------------------------------------------------------------------