From ddd43218e9900536381733735adf8681d345e775 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 5 Mar 2018 12:19:05 +0200 Subject: drop sax::tools::*base64 methods and use the underlying comphelper methods rather. This is so that I can break the dependency that tools has on sax, and can add methods that make sax depend on tools. Change-Id: I8a2d6ce2ffc3529a0020710ade6a1748ee5af7d5 Reviewed-on: https://gerrit.libreoffice.org/50767 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svgio/source/svgreader/svgimagenode.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'svgio/source') 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 #include #include +#include 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()) { -- cgit