summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-30 09:53:06 +0200
committerNoel Grandin <noel@peralex.com>2014-07-02 15:23:52 +0200
commit4ff115b3e7ff9c73dcc98fc6e7109f499ea81cfe (patch)
tree3660782eb23bdacd921bb11dcc825bc1b47035cf /filter
parent8635fa156ba63e5f63565b6d19ea798a61643b01 (diff)
drop UniReference in favour of rtl::Reference
since they're doing the same thing. Change-Id: I76134b6b848db8628f315fe5bd9eb972a6bf0cb6
Diffstat (limited to 'filter')
-rw-r--r--filter/Library_svgfilter.mk1
-rw-r--r--filter/source/svg/svgexport.cxx2
2 files changed, 2 insertions, 1 deletions
diff --git a/filter/Library_svgfilter.mk b/filter/Library_svgfilter.mk
index 8bbdd6051fc2..9d647b5c0a62 100644
--- a/filter/Library_svgfilter.mk
+++ b/filter/Library_svgfilter.mk
@@ -46,6 +46,7 @@ $(eval $(call gb_Library_use_libraries,svgfilter,\
tl \
i18nlangtag \
sax \
+ salhelper \
comphelper \
basegfx \
cppuhelper \
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index 1f1fe1d4d168..2c42ff181a74 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -1184,7 +1184,7 @@ bool SVGFilter::implExportAnimations()
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "class", "Animations" );
SvXMLElementExport aDefsElem( *mpSVGExport, XML_NAMESPACE_NONE, "defs", true, true );
- UniReference< xmloff::AnimationsExporter > xAnimationsExporter;
+ rtl::Reference< xmloff::AnimationsExporter > xAnimationsExporter;
xAnimationsExporter = new xmloff::AnimationsExporter( *mpSVGExport, xProps );
xAnimationsExporter->prepare( xRootNode );
xAnimationsExporter->exportAnimations( xRootNode );