]> git.saurik.com Git - wxWidgets.git/commitdiff
added wxTextInputStream::operator>>(wchar_t) for compilers which support this
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 20 Oct 2004 22:50:03 +0000 (22:50 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 20 Oct 2004 22:50:03 +0000 (22:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30047 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
include/wx/txtstrm.h

index 86c8f32d547c41426bd49fca9c97a48628349a3d..f134a15a0180f87757922e7355b90ad512c90bef 100644 (file)
@@ -206,6 +206,7 @@ All:
 
 - Norwegian (BokmÃ¥l) translation added (Hans F. Nordhaug)
 - wxDynamicLibrary::HasSymbol() added
+- added wxTextInputStream::operator>>(wchar_t) for compilers which support this
 
 All (GUI):
 
index 12381fa37cc9b833fc053327677dd9f0fbd372c0..014136cb7416603023a46435a8da20662b0ba5c0 100644 (file)
@@ -64,6 +64,9 @@ public:
     // Operators
     wxTextInputStream& operator>>(wxString& word);
     wxTextInputStream& operator>>(char& c);
+#if wxUSE_UNICODE && wxWCHAR_T_IS_REAL_TYPE
+    wxTextInputStream& operator>>(wchar_t& wc);
+#endif // wxUSE_UNICODE
     wxTextInputStream& operator>>(wxInt16& i);
     wxTextInputStream& operator>>(wxInt32& i);
     wxTextInputStream& operator>>(wxUint16& i);