summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-22 22:39:26 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-25 15:12:21 +0200
commit6e33eee41ddfa8c3bace8886ca6b7ab1529f9964 (patch)
treef24901f3a99014dddd2c980e7aec804cfd522412 /xmloff
parentb42bed0fa29712dfe669e400edcb6f01379b1f35 (diff)
callcatcher: remove unused methods
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/inc/DomBuilderContext.hxx3
-rw-r--r--xmloff/source/core/DomBuilderContext.cxx6
-rw-r--r--xmloff/source/core/DomExport.cxx7
3 files changed, 0 insertions, 16 deletions
diff --git a/xmloff/inc/DomBuilderContext.hxx b/xmloff/inc/DomBuilderContext.hxx
index 4ae1dc374a1e..16407417f6a1 100644
--- a/xmloff/inc/DomBuilderContext.hxx
+++ b/xmloff/inc/DomBuilderContext.hxx
@@ -86,9 +86,6 @@ public:
/** access the DOM tree */
com::sun::star::uno::Reference<com::sun::star::xml::dom::XDocument> getTree();
- /** access this context's DOM sub-tree */
- com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode> getNode();
-
//
// implement SvXMLImportContext methods:
diff --git a/xmloff/source/core/DomBuilderContext.cxx b/xmloff/source/core/DomBuilderContext.cxx
index c669af1733bd..aa6990f3b750 100644
--- a/xmloff/source/core/DomBuilderContext.cxx
+++ b/xmloff/source/core/DomBuilderContext.cxx
@@ -108,12 +108,6 @@ Reference<XDocument> DomBuilderContext::getTree()
return mxNode->getOwnerDocument();
}
-Reference<XNode> DomBuilderContext::getNode()
-{
- return mxNode;
-}
-
-
SvXMLImportContext* DomBuilderContext::CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,
diff --git a/xmloff/source/core/DomExport.cxx b/xmloff/source/core/DomExport.cxx
index 7e3e217b8f1a..74da38f20c1f 100644
--- a/xmloff/source/core/DomExport.cxx
+++ b/xmloff/source/core/DomExport.cxx
@@ -171,7 +171,6 @@ class DomExport: public DomVisitor
void addNamespace( const OUString& sPrefix, const OUString& sURI );
OUString qualifiedName( const OUString& sPrefix, const OUString& sURI,
const OUString& sLocalName );
- OUString qualifiedName( const Reference<XNode>& );
OUString qualifiedName( const Reference<XElement>& );
OUString qualifiedName( const Reference<XAttr>& );
void addAttribute( const Reference<XAttr>& );
@@ -241,12 +240,6 @@ OUString DomExport::qualifiedName( const OUString& sPrefix,
return sBuffer.makeStringAndClear();
}
-OUString DomExport::qualifiedName( const Reference<XNode>& xNode )
-{
- return qualifiedName( xNode->getPrefix(), xNode->getNamespaceURI(),
- xNode->getNodeName() );
-}
-
OUString DomExport::qualifiedName( const Reference<XElement>& xElement )
{
return qualifiedName( xElement->getPrefix(), xElement->getNamespaceURI(),