X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b730516c980c0574ef129e51067ea477b24df873..f2593d0ddae43a3e9054d2e9bb59646e19dffe73:/src/common/dlgcmn.cpp diff --git a/src/common/dlgcmn.cpp b/src/common/dlgcmn.cpp index 595643cba4..73d1bcd7dc 100644 --- a/src/common/dlgcmn.cpp +++ b/src/common/dlgcmn.cpp @@ -17,10 +17,8 @@ // headers // ---------------------------------------------------------------------------- -#if 0 #ifdef __GNUG__ - #pragma implementation -#endif + #pragma implementation "dialogbase.h" #endif // For compilers that support precompilation, includes "wx.h". @@ -56,13 +54,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] == wxT('\n')) { if (!line.IsEmpty()) { wxStaticText *s1 = new wxStaticText( this, -1, line ); box->Add( s1 ); - line = _T(""); + line = wxT(""); } else {