move Add/DeleteAttribute() implementations out of line to avoid deprecation warnings when including xml.h from user code
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50008 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
f35fdf7e4a
commit
e13ce4a3d0
@ -129,10 +129,8 @@ public:
|
||||
virtual void AddChild(wxXmlNode *child);
|
||||
virtual bool InsertChild(wxXmlNode *child, wxXmlNode *before_node);
|
||||
virtual bool RemoveChild(wxXmlNode *child);
|
||||
virtual void AddAttribute(const wxString& name, const wxString& value)
|
||||
{ AddProperty(name, value); }
|
||||
virtual bool DeleteAttribute(const wxString& name)
|
||||
{ return DeleteProperty(name); }
|
||||
virtual void AddAttribute(const wxString& name, const wxString& value);
|
||||
virtual bool DeleteAttribute(const wxString& name);
|
||||
|
||||
// access methods:
|
||||
wxXmlNodeType GetType() const { return m_type; }
|
||||
@ -170,8 +168,7 @@ public:
|
||||
void SetChildren(wxXmlNode *child) { m_children = child; }
|
||||
|
||||
void SetAttributes(wxXmlAttribute *attr) { m_attrs = attr; }
|
||||
virtual void AddAttribute(wxXmlAttribute *attr)
|
||||
{ AddProperty(attr); }
|
||||
virtual void AddAttribute(wxXmlAttribute *attr);
|
||||
|
||||
#if WXWIN_COMPATIBILITY_2_8
|
||||
wxDEPRECATED( inline wxXmlAttribute *GetProperties() const );
|
||||
|
@ -252,6 +252,21 @@ bool wxXmlNode::RemoveChild(wxXmlNode *child)
|
||||
}
|
||||
}
|
||||
|
||||
void wxXmlNode::AddAttribute(const wxString& name, const wxString& value)
|
||||
{
|
||||
AddProperty(name, value);
|
||||
}
|
||||
|
||||
void wxXmlNode::AddAttribute(wxXmlAttribute *attr)
|
||||
{
|
||||
AddProperty(attr);
|
||||
}
|
||||
|
||||
bool wxXmlNode::DeleteAttribute(const wxString& name)
|
||||
{
|
||||
return DeleteProperty(name);
|
||||
}
|
||||
|
||||
void wxXmlNode::AddProperty(const wxString& name, const wxString& value)
|
||||
{
|
||||
AddProperty(new wxXmlAttribute(name, value, NULL));
|
||||
|
Loading…
Reference in New Issue
Block a user