]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/streams/sstream.cpp
Bakefile 0.2.8 rebake.
[wxWidgets.git] / tests / streams / sstream.cpp
index a6d78901831985fe4a41bd0d34a67d8f4628011f..266360911ec13e4c6ffe47af1252596f4c3a70f7 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));
     }
 }