From: Vadim Zeitlin Date: Sun, 12 Sep 2004 11:54:41 +0000 (+0000) Subject: compilation fix after last commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/65a1bb98f584bdade18174bff3be96aad4466669 compilation fix after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29112 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/txtstrm.cpp b/src/common/txtstrm.cpp index 404f31f594..6f85a1d6cb 100644 --- a/src/common/txtstrm.cpp +++ b/src/common/txtstrm.cpp @@ -430,6 +430,8 @@ wxTextOutputStream& wxTextOutputStream::operator<<(char c) wxTextOutputStream& wxTextOutputStream::operator<<(wchar_t wc) { WriteString( wxString(&wc, m_conv, 1) ); + + return *this; } #endif // wxUSE_WCHAR_T