X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/78d14f80e9a72041ede52c30d912ec5cef21b1b3..65d48d095fb1390edd46f682c864320d7b9626e3:/contrib/src/xrc/xh_dlg.cpp?ds=sidebyside diff --git a/contrib/src/xrc/xh_dlg.cpp b/contrib/src/xrc/xh_dlg.cpp index 9aec62e835..392d9376f7 100644 --- a/contrib/src/xrc/xh_dlg.cpp +++ b/contrib/src/xrc/xh_dlg.cpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: xh_dlg.cpp -// Purpose: XML resource for dialogs +// Purpose: XRC resource for dialogs // Author: Vaclav Slavik // Created: 2000/03/05 // RCS-ID: $Id$ @@ -50,7 +50,7 @@ wxObject *wxDialogXmlHandler::DoCreateResource() { wxDialog *dlg = wxDynamicCast(m_instance, wxDialog); - wxASSERT_MSG(dlg, _("XML resource: Cannot create dialog without instance.")); + wxASSERT_MSG(dlg, _("XRC resource: Cannot create dialog without instance.")); dlg->Create(m_parentAsWindow, GetID(), @@ -64,7 +64,7 @@ wxObject *wxDialogXmlHandler::DoCreateResource() CreateChildren(dlg); - if (GetBool(_("centered"), FALSE)) + if (GetBool(wxT("centered"), FALSE)) dlg->Centre(); return dlg;