]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_dlg.cpp
added 'name' to wxEditableListBox ctor
[wxWidgets.git] / contrib / src / xml / xh_dlg.cpp
index f95d9f41f83b791383f4bac37615f4f23aefba51..045093f8995b180185c3941aa8064af1c5cae8e6 100644 (file)
@@ -48,15 +48,15 @@ wxDialogXmlHandler::wxDialogXmlHandler() : wxXmlResourceHandler()
 
 wxObject *wxDialogXmlHandler::DoCreateResource()
 { 
-    wxDialog *dlg = wxDynamicCast(m_Instance, wxDialog);
+    wxDialog *dlg = wxDynamicCast(m_instance, wxDialog);
     
     wxASSERT_MSG(dlg, _("XML resource: Cannot create dialog without instance."));
     
-    dlg->Create(m_ParentAsWindow,
+    dlg->Create(m_parentAsWindow,
                 GetID(),
-                GetText(_T("title")),
+                GetText(wxT("title")),
                 wxDefaultPosition, wxDefaultSize,
-                GetStyle(_T("style"), wxDEFAULT_DIALOG_STYLE),
+                GetStyle(wxT("style"), wxDEFAULT_DIALOG_STYLE),
                 GetName());
     dlg->SetClientSize(GetSize());
     dlg->Move(GetPosition());
@@ -74,7 +74,7 @@ wxObject *wxDialogXmlHandler::DoCreateResource()
 
 bool wxDialogXmlHandler::CanHandle(wxXmlNode *node)
 {
-    return node->GetName() == _T("dialog");
+    return IsOfClass(node, wxT("wxDialog"));
 }