X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/65b139c8d1277f5a6b13f9cfd392b30d6dafaf0a..8e77fd8bca165aab9709649d79a7cbc6a172d4e1:/include/wx/xrc/xmlreshandler.h diff --git a/include/wx/xrc/xmlreshandler.h b/include/wx/xrc/xmlreshandler.h index a92fee0349..7aa12b7bc6 100644 --- a/include/wx/xrc/xmlreshandler.h +++ b/include/wx/xrc/xmlreshandler.h @@ -131,6 +131,12 @@ public: // it, SetImpl() needs to be called as done by wxXmlResource::AddHandler(). wxXmlResourceHandler() { + m_node = NULL; + m_parent = + m_instance = NULL; + m_parentAsWindow = NULL; + m_resource = NULL; + m_impl = NULL; } @@ -185,15 +191,15 @@ protected: // Everything else is simply forwarded to wxXmlResourceHandlerImpl. void ReportError(wxXmlNode *context, const wxString& message) { - return GetImpl()->ReportError(context, message); + GetImpl()->ReportError(context, message); } void ReportError(const wxString& message) { - return GetImpl()->ReportError(message); + GetImpl()->ReportError(message); } void ReportParamError(const wxString& param, const wxString& message) { - return GetImpl()->ReportParamError(param, message); + GetImpl()->ReportParamError(param, message); } bool IsOfClass(wxXmlNode *node, const wxString& classname) const @@ -354,6 +360,15 @@ protected: wxWindow *m_parentAsWindow; wxXmlResource *m_resource; + // provide method access to those member variables + wxXmlResource* GetResource() const { return m_resource; } + wxXmlNode* GetNode() const { return m_node; } + wxString GetClass() const { return m_class; } + wxObject* GetParent() const { return m_parent; } + wxObject* GetInstance() const { return m_instance; } + wxWindow* GetParentAsWindow() const { return m_parentAsWindow; } + + wxArrayString m_styleNames; wxArrayInt m_styleValues;