]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/listimpl.cpp
UNICODE-capatable UTF8 implementation of wxStringXXXStream
[wxWidgets.git] / include / wx / listimpl.cpp
index 3beb66103d5f597528a94ead2feff7416575c40f..1f1dba3a81278908640920af926c29ca53fee67b 100644 (file)
@@ -6,9 +6,16 @@
 // Created:     16/11/98
 // RCS-ID:      $Id$
 // Copyright:   (c) 1998 Vadim Zeitlin
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
+#if wxUSE_STL
+
+#undef WX_DEFINE_LIST
+#define WX_DEFINE_LIST(name)
+
+#else // if !wxUSE_STL
+
 #define _DEFINE_LIST(T, name)                   \
     void wx##name##Node::DeleteData()    \
     {                                           \
@@ -22,3 +29,5 @@
 
 // don't pollute preprocessor's name space
 //#undef  _DEFINE_LIST
+
+#endif