// Created: 28/06/98
// RCS-ID: $Id$
// Copyright: (c) Guilhem Lavaux
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
return *this;
}
+#if wxUSE_UNICODE && wxWCHAR_T_IS_REAL_TYPE
+
+wxTextOutputStream& wxTextOutputStream::operator<<(wchar_t wc)
+{
+ WriteString( wxString(&wc, m_conv, 1) );
+
+ return *this;
+}
+
+#endif // wxUSE_UNICODE
+
wxTextOutputStream& wxTextOutputStream::operator<<(wxInt16 c)
{
wxString str;