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:
@@ -91,7 +91,7 @@
|
|||||||
|
|
||||||
inline std::ostream& operator<<(std::ostream& o, const wxString& s)
|
inline std::ostream& operator<<(std::ostream& o, const wxString& s)
|
||||||
{
|
{
|
||||||
return o << wxSafeConvertWX2MB(s);
|
return o << (const char *)wxSafeConvertWX2MB(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user