]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
Implemented the same simple API for creating customized
[wxWidgets.git] / src / common / string.cpp
index 9a3c061224f4d2ca409ec82f8f912606db98356a..a398b215e5fcd07846fa6f6e1c9c813be1603ffd 100644 (file)
@@ -80,9 +80,9 @@ wxSTD ostream& operator<<(wxSTD ostream& os, const wxCStrData& str)
 {
 // FIXME-UTF8: always, not only if wxUSE_UNICODE
 #if wxUSE_UNICODE && !defined(__BORLANDC__)
-    return os << str.AsWChar();
+    return os << (const wchar_t*)str.AsWCharBuf();
 #else
-    return os << str.AsChar();
+    return os << (const char*)str.AsCharBuf();
 #endif
 }