fix operator<<() for wxString

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-09-25 23:22:41 +00:00
parent 01e6aa1e2b
commit 232f89100e

View File

@ -91,7 +91,7 @@
inline std::ostream& operator<<(std::ostream& o, const wxString& s)
{
return o << wxSafeConvertWX2MB(s);
return o << (const char *)wxSafeConvertWX2MB(s);
}