diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-01 11:31:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-03 11:14:44 +0100 |
commit | a6e682faa612fdb2b669ceaae8c9c3f4964c6b29 (patch) | |
tree | f6cb3ed6cb2a3ccc1931b7c261841e5b3b151615 /include/editeng | |
parent | 518a8a12e3aa482948da15e808626c2efbd06d88 (diff) |
find symbols that can be private
update the script and make private standalone functions
Change-Id: Icb26ce258107700c90f89ad4e0d3329d075a2eb1
Reviewed-on: https://gerrit.libreoffice.org/81879
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/unonrule.hxx | 2 | ||||
-rw-r--r-- | include/editeng/unotext.hxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/unonrule.hxx b/include/editeng/unonrule.hxx index 22d3e35a785e..87d1ed12a656 100644 --- a/include/editeng/unonrule.hxx +++ b/include/editeng/unonrule.hxx @@ -33,7 +33,7 @@ namespace com::sun::star::beans { struct PropertyValue; } EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule(const SvxNumRule* pRule); -EDITENG_DLLPUBLIC css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule(); +css::uno::Reference< css::container::XIndexReplace > SvxCreateNumRule(); /// @throws css::lang::IllegalArgumentException const SvxNumRule& SvxGetNumRule( css::uno::Reference< css::container::XIndexReplace > const & xRule ); EDITENG_DLLPUBLIC css::uno::Reference< css::ucb::XAnyCompare > SvxCreateNumRuleCompare() throw(); diff --git a/include/editeng/unotext.hxx b/include/editeng/unotext.hxx index fef69993d1ab..c442fa731384 100644 --- a/include/editeng/unotext.hxx +++ b/include/editeng/unotext.hxx @@ -664,9 +664,9 @@ public: }; EDITENG_DLLPUBLIC const SvxItemPropertySet* ImplGetSvxUnoOutlinerTextCursorSvxPropertySet(); -EDITENG_DLLPUBLIC const SfxItemPropertyMapEntry* ImplGetSvxUnoOutlinerTextCursorPropertyMap(); -EDITENG_DLLPUBLIC const SvxItemPropertySet* ImplGetSvxTextPortionSvxPropertySet(); -EDITENG_DLLPUBLIC const SfxItemPropertyMapEntry* ImplGetSvxTextPortionPropertyMap(); +const SfxItemPropertyMapEntry* ImplGetSvxUnoOutlinerTextCursorPropertyMap(); +const SvxItemPropertySet* ImplGetSvxTextPortionSvxPropertySet(); +const SfxItemPropertyMapEntry* ImplGetSvxTextPortionPropertyMap(); #endif |