]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/list.cpp
unused parameter warnings suppressed
[wxWidgets.git] / src / common / list.cpp
index 49e32680592641e58b1f0a6efa94c75f1d4104cd..48a91d0d9ecdab1ffd70ff0179565db3cec6050c 100644 (file)
     #include "wx/utils.h"   // for copystring() (beurk...)
 #endif
 
-// -----------------------------------------------------------------------------
-// implementation of standard lists
-// -----------------------------------------------------------------------------
-
-#include "wx/listimpl.cpp"
-WX_DEFINE_LIST(wxWindowList);
-
 // =============================================================================
 // implementation
 // =============================================================================
@@ -570,7 +563,7 @@ wxStringList::wxStringList (const wxChar *first, ...)
       s = va_arg(ap, const wxChar *);
       //    if (s == NULL)
 #ifdef __WXMSW__
-      if ((int) s == 0)
+      if ((int)(long) s == 0)
 #else
       if ((long) s == 0)
 #endif
@@ -611,7 +604,7 @@ bool wxStringList::Member(const wxChar *s) const
     return FALSE;
 }
 
-static int
+static int LINKAGEMODE
 wx_comparestrings(const void *arg1, const void *arg2)
 {
   wxChar **s1 = (wxChar **) arg1;