summaryrefslogtreecommitdiffstats
path: root/xmlserializer/XmlElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xmlserializer/XmlElement.cpp')
-rw-r--r--xmlserializer/XmlElement.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/xmlserializer/XmlElement.cpp b/xmlserializer/XmlElement.cpp
index 8f86c77..425e041 100644
--- a/xmlserializer/XmlElement.cpp
+++ b/xmlserializer/XmlElement.cpp
@@ -238,11 +238,6 @@ void CXmlElement::setTextContent(const string& strContent)
xmlAddChild(_pXmlElement, xmlNewText(BAD_CAST strContent.c_str()));
}
-void CXmlElement::setComment(const string& strComment)
-{
- xmlAddChild(_pXmlElement, xmlNewComment(BAD_CAST strComment.c_str()));
-}
-
// Child creation
void CXmlElement::createChild(CXmlElement& childElement, const string& strType)
{