summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-10-02 11:42:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-10-02 14:21:20 +0100
commit78cab9dc44009351ec1f19376b0594cb4a110814 (patch)
treea91008353e82c5847478273846145e1d5736339d /xmloff
parent474228f89128487ea7a216580df0a8bc5e06f87e (diff)
should be safe to remove this piece
Change-Id: Ic1c5be7794ff374c32a3c727d6233f69ea38c7aa
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/inc/DomExport.hxx1
-rw-r--r--xmloff/source/core/DomExport.cxx6
2 files changed, 0 insertions, 7 deletions
diff --git a/xmloff/inc/DomExport.hxx b/xmloff/inc/DomExport.hxx
index 6f88dc3bafb9..c8c9a5d36906 100644
--- a/xmloff/inc/DomExport.hxx
+++ b/xmloff/inc/DomExport.hxx
@@ -30,7 +30,6 @@ namespace com { namespace sun { namespace star {
} } }
void exportDom( SvXMLExport&, const com::sun::star::uno::Reference<com::sun::star::xml::dom::XDocument>& );
-void exportDom( SvXMLExport&, const com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode>& );
#endif
diff --git a/xmloff/source/core/DomExport.cxx b/xmloff/source/core/DomExport.cxx
index ec55a174adc1..450271858d19 100644
--- a/xmloff/source/core/DomExport.cxx
+++ b/xmloff/source/core/DomExport.cxx
@@ -257,10 +257,4 @@ void exportDom( SvXMLExport& rExport, const Reference<XDocument>& xDocument )
visit( aDomExport, xDocument );
}
-void exportDom( SvXMLExport& rExport, const Reference<XNode>& xNode )
-{
- DomExport aDomExport( rExport );
- visit( aDomExport, xNode );
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */