summaryrefslogtreecommitdiffstats
path: root/svgio
diff options
context:
space:
mode:
Diffstat (limited to 'svgio')
-rw-r--r--svgio/Library_svgio.mk1
-rw-r--r--svgio/source/svgreader/svgimagenode.cxx3
2 files changed, 3 insertions, 1 deletions
diff --git a/svgio/Library_svgio.mk b/svgio/Library_svgio.mk
index 3ba1891d691b..44d8ef9c05b5 100644
--- a/svgio/Library_svgio.mk
+++ b/svgio/Library_svgio.mk
@@ -34,6 +34,7 @@ $(eval $(call gb_Library_use_sdk_api,svgio))
$(eval $(call gb_Library_use_libraries,svgio,\
basegfx \
drawinglayer \
+ comphelper \
cppu \
cppuhelper \
sal \
diff --git a/svgio/source/svgreader/svgimagenode.cxx b/svgio/source/svgreader/svgimagenode.cxx
index db66e18aab2a..647048e07850 100644
--- a/svgio/source/svgreader/svgimagenode.cxx
+++ b/svgio/source/svgreader/svgimagenode.cxx
@@ -32,6 +32,7 @@
#include <basegfx/polygon/b2dpolygon.hxx>
#include <rtl/uri.hxx>
#include <drawinglayer/geometry/viewinformation2d.hxx>
+#include <comphelper/base64.hxx>
namespace svgio
{
@@ -212,7 +213,7 @@ namespace svgio
{
// use embedded base64 encoded data
css::uno::Sequence< sal_Int8 > aPass;
- ::sax::Converter::decodeBase64(aPass, maData);
+ ::comphelper::Base64::decode(aPass, maData);
if(aPass.hasElements())
{