summaryrefslogtreecommitdiff
path: root/l10ntools/source/xmlparse.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/source/xmlparse.cxx')
-rw-r--r--l10ntools/source/xmlparse.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx
index bcad10416232..48e0d3f97512 100644
--- a/l10ntools/source/xmlparse.cxx
+++ b/l10ntools/source/xmlparse.cxx
@@ -143,22 +143,6 @@ void XMLParentNode::AddChild( XMLChildNode *pChild )
}
/*****************************************************************************/
-void XMLParentNode::AddChild( XMLChildNode *pChild , size_t pos )
-/*****************************************************************************/
-{
- if ( !pChildList )
- pChildList = new XMLChildNodeList();
- if ( pos < pChildList->size() )
- {
- XMLChildNodeList::iterator it = pChildList->begin();
- ::std::advance( it, pos );
- pChildList->insert( it, pChild );
- } else {
- pChildList->push_back( pChild );
- }
-}
-
-/*****************************************************************************/
void XMLParentNode::RemoveAndDeleteAllChildren(){
/*****************************************************************************/
if ( pChildList ) {