]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/strconv.cpp
some != NULL checks
[wxWidgets.git] / src / common / strconv.cpp
index 609f6f2b4dbe7340f78bd36528db48f5c61d57ff..9c423ebda5435d1de992b78726975ace5e36514a 100644 (file)
@@ -454,7 +454,7 @@ size_t wxCSConv::WC2MB(char *buf, const wchar_t *psz, size_t n) const
     }
     return n;
   }
-  return wcslen(psz);
+  return ::wcslen(psz);
 }
 
 #endif