wxT(), not _()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2001-11-25 23:17:22 +00:00
parent ce28b4d772
commit 1489a2c037
3 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ wxObject *wxDialogXmlHandler::DoCreateResource()
CreateChildren(dlg);
if (GetBool(_("centered"), FALSE))
if (GetBool(wxT("centered"), FALSE))
dlg->Centre();
return dlg;

View File

@ -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

View File

@ -64,7 +64,7 @@ wxObject *wxDialogXmlHandler::DoCreateResource()
CreateChildren(dlg);
if (GetBool(_("centered"), FALSE))
if (GetBool(wxT("centered"), FALSE))
dlg->Centre();
return dlg;