diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-02 11:38:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-02 11:38:58 +0100 |
commit | 446be18a3e6636f40f6ae2f6f8749e068f48aad3 (patch) | |
tree | 4662af40090e1e5af06d590fe36d712565a4a3fb /xmloff/source/core | |
parent | 9ad516a00cabba1383bc5c53b133ecc33b1c71ff (diff) |
make CppunitTest_sw_ww8export work again
revert xmloff portion of
commit 35e68754ec3cff30c5cdb665688a9b13f29dd439
Author: Noel Grandin <noel@peralex.com>
Date: Thu Oct 1 15:10:56 2015 +0200
loplugin:unusedmethods
Change-Id: I3d6f1300f4fae2af9e580d1d3b2c2c80fa9e9268
Reviewed-on: https://gerrit.libreoffice.org/19075
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Change-Id: I24aa3f113a77d93c789b063b3c099bf2038e1dad
Diffstat (limited to 'xmloff/source/core')
-rw-r--r-- | xmloff/source/core/DomExport.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmloff/source/core/DomExport.cxx b/xmloff/source/core/DomExport.cxx index 450271858d19..ec55a174adc1 100644 --- a/xmloff/source/core/DomExport.cxx +++ b/xmloff/source/core/DomExport.cxx @@ -257,4 +257,10 @@ 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: */ |