diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-07 09:28:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-07 17:44:23 +0200 |
commit | ca46feb2ff915c6842b87cd5799a83af8003f3cd (patch) | |
tree | 08a8775c2038655f12e9341f469e8e2404844045 /include/svx | |
parent | a041cb54351326cd8beb39abac23f07f35de5463 (diff) |
make some symbols private
Change-Id: I224831ad18e754fd67d9b16510cd286a5397f1f3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98236
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/tbcontrl.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/tbcontrl.hxx b/include/svx/tbcontrl.hxx index 387c67f4bdb3..3614ae4fe309 100644 --- a/include/svx/tbcontrl.hxx +++ b/include/svx/tbcontrl.hxx @@ -153,7 +153,7 @@ namespace svx class ToolboxButtonColorUpdaterBase; } -class SVXCORE_DLLPUBLIC SvxStyleToolBoxControl final : public cppu::ImplInheritanceHelper<svt::ToolboxController, +class SvxStyleToolBoxControl final : public cppu::ImplInheritanceHelper<svt::ToolboxController, css::lang::XServiceInfo> { struct Impl; @@ -192,14 +192,14 @@ private: std::unique_ptr<SfxTemplateItem> pFamilyState[MAX_FAMILIES]; sal_uInt16 nActFamily; // Id in the ToolBox = Position - 1 - SVX_DLLPRIVATE void Update(); - SVX_DLLPRIVATE void FillStyleBox(); - SVX_DLLPRIVATE void SelectStyle(const OUString& rStyleName); + void Update(); + void FillStyleBox(); + void SelectStyle(const OUString& rStyleName); friend class SfxStyleControllerItem_Impl; - SVX_DLLPRIVATE void SetFamilyState(sal_uInt16 nIdx, const SfxTemplateItem* pItem); - SVX_DLLPRIVATE SfxStyleFamily GetActFamily() const; + void SetFamilyState(sal_uInt16 nIdx, const SfxTemplateItem* pItem); + SfxStyleFamily GetActFamily() const; }; typedef std::function<void(const OUString&, const NamedColor&)> ColorSelectFunction; |