From: Václav Slavík Date: Sun, 25 Nov 2001 23:17:22 +0000 (+0000) Subject: wxT(), not _() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1489a2c037787abf291f883d63826369659f3970 wxT(), not _() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/xrc/xh_dlg.cpp b/contrib/src/xrc/xh_dlg.cpp index c872225abb..392d9376f7 100644 --- a/contrib/src/xrc/xh_dlg.cpp +++ b/contrib/src/xrc/xh_dlg.cpp @@ -64,7 +64,7 @@ wxObject *wxDialogXmlHandler::DoCreateResource() CreateChildren(dlg); - if (GetBool(_("centered"), FALSE)) + if (GetBool(wxT("centered"), FALSE)) dlg->Centre(); return dlg; diff --git a/src/common/ftp.cpp b/src/common/ftp.cpp index 5a815e21c8..6665963f88 100644 --- a/src/common/ftp.cpp +++ b/src/common/ftp.cpp @@ -844,7 +844,7 @@ int wxFTP::GetFileSize(const wxString& fileName) { if ( wxSscanf(fileList[i].c_str(), - _("%*s %*s %*s %*s %i %*s %*s %*s %*s"), + _T("%*s %*s %*s %*s %i %*s %*s %*s %*s"), &filesize) == 9 ) { // We've gotten a good response diff --git a/src/xrc/xh_dlg.cpp b/src/xrc/xh_dlg.cpp index c872225abb..392d9376f7 100644 --- a/src/xrc/xh_dlg.cpp +++ b/src/xrc/xh_dlg.cpp @@ -64,7 +64,7 @@ wxObject *wxDialogXmlHandler::DoCreateResource() CreateChildren(dlg); - if (GetBool(_("centered"), FALSE)) + if (GetBool(wxT("centered"), FALSE)) dlg->Centre(); return dlg;