]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/xpmdecod.cpp
check the week day for consistency in ParseFormat() (replaces patch 788052)
[wxWidgets.git] / src / common / xpmdecod.cpp
index 70c19c20ae5e85b0a7a6c8c136253d27608c38a1..35e9b0b521563b2cc96b9c38f808a7c4871e8071 100644 (file)
@@ -90,7 +90,7 @@ license is as follows:
  * in this Software without prior written authorization from GROUPE BULL.
  */
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "xpmdecod.h"
 #endif
 
@@ -119,20 +119,6 @@ license is as follows:
 
 #include "wx/xpmdecod.h"
 
-#ifdef __WXWINCE__
-char* strdup(const char* s)
-{
-    char* s2 = new char[strlen(s)];
-    strcpy(s2, s);
-    return s2;
-}
-
-bool isspace(char c)
-{
-    return (c == ' ');
-}
-#endif
-
 #if wxUSE_STREAMS
 bool wxXPMDecoder::CanRead(wxInputStream& stream)
 {