From 5e55f7a54170b25aaf82520c1cde307ece362eef Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 28 Nov 2019 20:32:19 +0200 Subject: make some function symbols module private improve the script to filter out more noise generated by library symbols Change-Id: I22bf6037d56bc4015001825c3fb3b21a39d85e07 Reviewed-on: https://gerrit.libreoffice.org/84022 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmlsecurity/inc/xmlsec/errorcallback.hxx | 4 ++-- xmlsecurity/source/xmlsec/errorcallback.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'xmlsecurity') diff --git a/xmlsecurity/inc/xmlsec/errorcallback.hxx b/xmlsecurity/inc/xmlsec/errorcallback.hxx index afb17b0da189..511d20ae1840 100644 --- a/xmlsecurity/inc/xmlsec/errorcallback.hxx +++ b/xmlsecurity/inc/xmlsec/errorcallback.hxx @@ -23,10 +23,10 @@ #include // Only used for logging -XSECXMLSEC_DLLPUBLIC void setErrorRecorder(); +void setErrorRecorder(); //ToDo //void setErrorRecorder(const css::uno::Reference< css::xml::crypto::XXMLEncryptionTemplate >& xTemplate); -XSECXMLSEC_DLLPUBLIC void clearErrorRecorder(); +void clearErrorRecorder(); #endif diff --git a/xmlsecurity/source/xmlsec/errorcallback.cxx b/xmlsecurity/source/xmlsec/errorcallback.cxx index c621c1bf715c..0749524056cb 100644 --- a/xmlsecurity/source/xmlsec/errorcallback.cxx +++ b/xmlsecurity/source/xmlsec/errorcallback.cxx @@ -54,12 +54,12 @@ static void errorCallback(const char* file, } -XSECXMLSEC_DLLPUBLIC void setErrorRecorder() +void setErrorRecorder() { xmlSecErrorsSetCallback(errorCallback); } -XSECXMLSEC_DLLPUBLIC void clearErrorRecorder() +void clearErrorRecorder() { xmlSecErrorsSetCallback(nullptr); } -- cgit