]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/streams/sstream.cpp
Added command to set wxPG_PROP_READONLY in the propgrid sample
[wxWidgets.git] / tests / streams / sstream.cpp
index a6d78901831985fe4a41bd0d34a67d8f4628011f..4e58062e8419088a8a8808c162aad3d9ca0df6f9 100644 (file)
@@ -80,7 +80,7 @@ strStream::strStream()
     m_str.reserve(LEN);
     for ( size_t n = 0; n < LEN; n++ )
     {
-        m_str += wxChar(_T('A') + n % (_T('Z') - _T('A') + 1));
+        m_str += wxChar(wxT('A') + n % (wxT('Z') - wxT('A') + 1));
     }
 }
 
@@ -106,14 +106,8 @@ void strStream::CheckString(const wxString& text)
 {
     wxStringOutputStream sos;
 
-    size_t len = text.length();
-#if wxUSE_UNICODE
-    const wxCharBuffer textMB(wxConvLibc.cWC2MB(text.wc_str(), len + 1, &len));
-#else
-    const char *textMB = text.c_str();
-#endif
-
-    sos.Write(textMB, len);
+    const wxScopedCharBuffer buf(text.mb_str());
+    sos.Write(buf, buf.length());
 
     CPPUNIT_ASSERT_EQUAL( text, sos.GetString() );
 }