]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/sstream.cpp
Don't use mnemonic for Cancel button under MSW.
[wxWidgets.git] / src / common / sstream.cpp
index 740ebbf5519445c5e2b2e3590908f32d86f3602a..24e09f1be394b4983735acec310e04dd7c87295a 100644 (file)
@@ -47,7 +47,7 @@ wxStringInputStream::wxStringInputStream(const wxString& s)
 #endif
 {
 #if wxUSE_UNICODE
-    wxASSERT_MSG(m_buf.data() != NULL, _T("Could not convert string to UTF8!"));
+    wxASSERT_MSG(m_buf.data() != NULL, wxT("Could not convert string to UTF8!"));
 #endif
     m_pos = 0;
 }
@@ -82,7 +82,7 @@ wxFileOffset wxStringInputStream::OnSysSeek(wxFileOffset ofs, wxSeekMode mode)
             break;
 
         default:
-            wxFAIL_MSG( _T("invalid seek mode") );
+            wxFAIL_MSG( wxT("invalid seek mode") );
             return wxInvalidOffset;
     }