]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dlgcmn.cpp
switch /MD /MDd depend on FINAL
[wxWidgets.git] / src / common / dlgcmn.cpp
index 595643cba4fabf614ab9b95293fba9030348b348..df030412fd887570c33712766e331d1e01c244da 100644 (file)
@@ -56,13 +56,13 @@ wxSizer *wxDialogBase::CreateTextSizer( const wxString &message )
     wxString line;
     for (size_t pos = 0; pos < message.Len(); pos++)
     {
-        if (message[pos] == _T('\n'))
+        if (message[pos] == T('\n'))
         {
             if (!line.IsEmpty())
             {
                 wxStaticText *s1 = new wxStaticText( this, -1, line );
                box->Add( s1 );
-                line = _T("");
+                line = T("");
             }
            else
            {