From 3ba92b5f1eaf7d4447a0943ea260db515ca799dc Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 15 Feb 2024 10:04:51 +0200 Subject: hide more symbols using the bin/find-can-be-private-symbols.py script to find classes with large numbers of exported symbols that can hidden. before exported = 58104 imported = 30810 unused_exports = 35433 after exported = 55094 imported = 31073 unused_exports = 32423 Change-Id: Idd0a70ee3740afd5ca1a86771e0e2ff8090d102d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163456 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmlsecurity/inc/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx | 4 ++-- xmlsecurity/inc/xmlsignaturehelper.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'xmlsecurity/inc') diff --git a/xmlsecurity/inc/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx b/xmlsecurity/inc/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx index 8f5695d10dfe..527564fd30c9 100644 --- a/xmlsecurity/inc/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx +++ b/xmlsecurity/inc/xmlsec/xmldocumentwrapper_xmlsecimpl.hxx @@ -33,7 +33,7 @@ #include -class XSECXMLSEC_DLLPUBLIC XMLDocumentWrapper_XmlSecImpl final : public cppu::WeakImplHelper +class XMLDocumentWrapper_XmlSecImpl final : public cppu::WeakImplHelper < css::xml::wrapper::XXMLDocumentWrapper, css::xml::sax::XDocumentHandler, @@ -116,7 +116,7 @@ private: void rebuildIDLink( xmlNodePtr pNode ) const; public: - XMLDocumentWrapper_XmlSecImpl(); + XSECXMLSEC_DLLPUBLIC XMLDocumentWrapper_XmlSecImpl(); virtual ~XMLDocumentWrapper_XmlSecImpl() override; /* css::xml::wrapper::XXMLDocumentWrapper */ diff --git a/xmlsecurity/inc/xmlsignaturehelper.hxx b/xmlsecurity/inc/xmlsignaturehelper.hxx index d6e2b90eebac..8572c73a327e 100644 --- a/xmlsecurity/inc/xmlsignaturehelper.hxx +++ b/xmlsecurity/inc/xmlsignaturehelper.hxx @@ -60,7 +60,7 @@ namespace com::sun::star::xml::sax { class XWriter; } **********************************************************/ -class XMLSECURITY_DLLPUBLIC XMLSignatureHelper +class XMLSignatureHelper { private: css::uno::Reference< css::uno::XComponentContext > mxCtx; @@ -83,7 +83,7 @@ public: // Set the storage which should be used by the default UriBinding // Must be set before StartMission(). //sODFVersion indicates the ODF version - void SetStorage( const css::uno::Reference < css::embed::XStorage >& rxStorage, std::u16string_view sODFVersion ); + XMLSECURITY_DLLPUBLIC void SetStorage( const css::uno::Reference < css::embed::XStorage >& rxStorage, std::u16string_view sODFVersion ); // Argument for the Link is a uno::Reference< xml::sax::XAttributeList >* // Return 1 to verify, 0 to skip. -- cgit