diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-28 20:32:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-29 13:15:28 +0100 |
commit | 5e55f7a54170b25aaf82520c1cde307ece362eef (patch) | |
tree | 5e8a2d47650735c860b5a0054fa0d19cf2312d59 /xmlsecurity | |
parent | de62d0c77e2f9e24f72fd638cb5c5e365ff164b5 (diff) |
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/inc/xmlsec/errorcallback.hxx | 4 | ||||
-rw-r--r-- | xmlsecurity/source/xmlsec/errorcallback.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
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 <xsecxmlsecdllapi.h> // 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); } |