summaryrefslogtreecommitdiff
path: root/include/xmloff/formlayerexport.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-11-05 11:24:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-01 12:13:59 +0100
commite10e5c15cc51d3b2a5e4b699c5f381aa92a17c4e (patch)
treeddbe3e3146a365f7f2ba79ce73e18568a834d104 /include/xmloff/formlayerexport.hxx
parentfabce43fe1caf3a59a7d9dc1074a74b704f9fa24 (diff)
improve the script for reducing symbol exports
And apply some of the results Change-Id: If555476fdd951cbc1d01fb3ef3ab1cbca2b64960 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124896 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff/formlayerexport.hxx')
-rw-r--r--include/xmloff/formlayerexport.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/xmloff/formlayerexport.hxx b/include/xmloff/formlayerexport.hxx
index bd0b72e24e46..823e99875104 100644
--- a/include/xmloff/formlayerexport.hxx
+++ b/include/xmloff/formlayerexport.hxx
@@ -54,10 +54,10 @@ namespace xmloff
// impl class
std::unique_ptr<OFormLayerXMLExport_Impl> m_pImpl;
- virtual ~OFormLayerXMLExport() override;
+ SAL_DLLPRIVATE virtual ~OFormLayerXMLExport() override;
public:
- OFormLayerXMLExport(SvXMLExport& _rContext);
+ SAL_DLLPRIVATE OFormLayerXMLExport(SvXMLExport& _rContext);
/** initializes some internal structures for fast access to the given page
@@ -84,7 +84,7 @@ namespace xmloff
@see seekPage
*/
- OUString getControlId(
+ SAL_DLLPRIVATE OUString getControlId(
const css::uno::Reference< css::beans::XPropertySet >& _rxControl);
/** retrieves the style name for the control's number style.
@@ -98,7 +98,7 @@ namespace xmloff
@see examineForms
@see seekPage
*/
- OUString getControlNumberStyle(
+ SAL_DLLPRIVATE OUString getControlNumberStyle(
const css::uno::Reference< css::beans::XPropertySet >& _rxControl );
/** examines the forms collection given.
@@ -146,7 +146,7 @@ namespace xmloff
/** exports the automatic controls number styles
*/
- void exportAutoControlNumberStyles();
+ SAL_DLLPRIVATE void exportAutoControlNumberStyles();
/** exports the auto-styles collected during the examineForms calls
*/
@@ -159,7 +159,7 @@ namespace xmloff
to the form layer exporter.<br/>
Of course you have to do this before calling <member>exportForms</member></p>
*/
- void excludeFromExport( const css::uno::Reference< css::awt::XControlModel >& _rxControl );
+ SAL_DLLPRIVATE void excludeFromExport( const css::uno::Reference< css::awt::XControlModel >& _rxControl );
};