/////////////////////////////////////////////////////////////////////////////
// Name: xh_dlg.cpp
-// Purpose: XML resource for dialogs
+// Purpose: XRC resource for dialogs
// Author: Vaclav Slavik
// Created: 2000/03/05
// RCS-ID: $Id$
{
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(),
CreateChildren(dlg);
- if (GetBool(_("centered"), FALSE))
+ if (GetBool(wxT("centered"), FALSE))
dlg->Centre();
return dlg;