]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/buffer.h
compilation fixes (I wonder how did you people ever compile it...)
[wxWidgets.git] / include / wx / buffer.h
index 6556f39cd6cc9c0ed9ca78ad0bdc026a60980565..c2aaa0c09b727ef7289ece05c2a3d4526bda9aad 100644 (file)
@@ -71,7 +71,8 @@ public:
         wxASSERT_MSG( wcs, wxT("NULL string in wxWCharBuffer") );
 
         if (wcs) {
-#if (defined(__BORLANDC__) && (__BORLANDC__ > 0x530))
+#if ( defined(__BORLANDC__) && (__BORLANDC__ > 0x530) ) \
+    || ( defined(__MWERKS__) && defined(__WXMSW__) )
           size_t siz = (std::wcslen(wcs)+1)*sizeof(wchar_t);
 #else
           size_t siz = (::wcslen(wcs)+1)*sizeof(wchar_t);