#endif // defined( __VISUALC__ )
-// Visual C++ 2005 complains about the const
-#if (defined(__VISUALC__) && __VISUALC__ >= 1400) || defined(__MWERKS__)
-#define _WX_DELETEFUNCTIONCONST
-#else
-#define _WX_DELETEFUNCTIONCONST const
-#endif
-
#define WX_DECLARE_LIST_XO(elT, liT, decl) \
VC6_WORKAROUND(elT, liT, decl) \
decl liT : public std::list<elT> \
bool m_destroy; \
private: \
typedef elT _WX_LIST_ITEM_TYPE_##liT; \
- static void DeleteFunction( _WX_DELETEFUNCTIONCONST _WX_LIST_ITEM_TYPE_##liT X ); \
+ static void DeleteFunction( _WX_LIST_ITEM_TYPE_##liT X ); \
public: \
class compatibility_iterator \
{ \
#undef WX_DEFINE_LIST
#define WX_DEFINE_LIST(name) \
- void name::DeleteFunction( _WX_DELETEFUNCTIONCONST _WX_LIST_ITEM_TYPE_##name X ) \
+ void name::DeleteFunction( _WX_LIST_ITEM_TYPE_##name X ) \
{ \
delete X; \
}
WX_DEFINE_LIST(wxObjectList)
// with wxUSE_STL wxStringList contains wxString objects, not pointers
-void wxStringListBase::DeleteFunction( _WX_DELETEFUNCTIONCONST wxString WXUNUSED(X) )
+void wxStringListBase::DeleteFunction( wxString WXUNUSED(X) )
{
}