From 2f0bac123b6be4c3e905d9ff4b1d3319bf6fe0cc Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Wed, 29 Aug 2001 18:31:51 +0000 Subject: [PATCH] non-recursive destructors git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/include/wx/xrc/xml.h | 3 +-- include/wx/xrc/xml.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/contrib/include/wx/xrc/xml.h b/contrib/include/wx/xrc/xml.h index de3b3fe7ed..07b5ad6e32 100644 --- a/contrib/include/wx/xrc/xml.h +++ b/contrib/include/wx/xrc/xml.h @@ -77,7 +77,6 @@ public: wxXmlProperty(const wxString& name, const wxString& value, wxXmlProperty *next) : m_name(name), m_value(value), m_next(next) {} - ~wxXmlProperty() { delete m_next; } wxString GetName() const { return m_name; } wxString GetValue() const { return m_value; } @@ -116,7 +115,7 @@ public: wxXmlNode(wxXmlNode *parent,wxXmlNodeType type, const wxString& name, const wxString& content, wxXmlProperty *props, wxXmlNode *next); - ~wxXmlNode() { delete m_properties; delete m_next; delete m_children; } + ~wxXmlNode(); // copy ctor & operator=. Note that this does NOT copy syblings // and parent pointer, i.e. m_parent and m_next will be NULL diff --git a/include/wx/xrc/xml.h b/include/wx/xrc/xml.h index de3b3fe7ed..07b5ad6e32 100644 --- a/include/wx/xrc/xml.h +++ b/include/wx/xrc/xml.h @@ -77,7 +77,6 @@ public: wxXmlProperty(const wxString& name, const wxString& value, wxXmlProperty *next) : m_name(name), m_value(value), m_next(next) {} - ~wxXmlProperty() { delete m_next; } wxString GetName() const { return m_name; } wxString GetValue() const { return m_value; } @@ -116,7 +115,7 @@ public: wxXmlNode(wxXmlNode *parent,wxXmlNodeType type, const wxString& name, const wxString& content, wxXmlProperty *props, wxXmlNode *next); - ~wxXmlNode() { delete m_properties; delete m_next; delete m_children; } + ~wxXmlNode(); // copy ctor & operator=. Note that this does NOT copy syblings // and parent pointer, i.e. m_parent and m_next will be NULL -- 2.45.2