diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-22 08:40:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-22 20:31:27 +0100 |
commit | 5f520f757774db17ea4e33d34c724cf2af3adcba (patch) | |
tree | 311668c50e69fa29f6e9d54605a361f374c00147 /sw | |
parent | f394ea0b6b58ed516977803f00c0147bb0facc25 (diff) |
make some classes module-private
Change-Id: If7303a082e06f6937fca911c578a40475546cda2
Reviewed-on: https://gerrit.libreoffice.org/83442
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/calbck.hxx | 4 | ||||
-rw-r--r-- | sw/inc/frmfmt.hxx | 18 | ||||
-rw-r--r-- | sw/inc/legacyitem.hxx | 6 |
3 files changed, 14 insertions, 14 deletions
diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx index 57eeac3ca535..f8596caddc27 100644 --- a/sw/inc/calbck.hxx +++ b/sw/inc/calbck.hxx @@ -60,14 +60,14 @@ class SfxPoolItem; namespace sw { class ClientIteratorBase; - struct SW_DLLPUBLIC LegacyModifyHint final: SfxHint + struct LegacyModifyHint final: SfxHint { LegacyModifyHint(const SfxPoolItem* pOld, const SfxPoolItem* pNew) : m_pOld(pOld), m_pNew(pNew) {}; virtual ~LegacyModifyHint() override; const SfxPoolItem* m_pOld; const SfxPoolItem* m_pNew; }; - struct SW_DLLPUBLIC ModifyChangedHint final: SfxHint + struct ModifyChangedHint final: SfxHint { ModifyChangedHint(const SwModify* pNew) : m_pNew(pNew) {}; virtual ~ModifyChangedHint() override; diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx index 4bfd5268d251..193bb64e03bd 100644 --- a/sw/inc/frmfmt.hxx +++ b/sw/inc/frmfmt.hxx @@ -266,25 +266,25 @@ namespace sw DELETE_FRAMES, POST_RESTORE_FLY_ANCHOR, }; - struct SW_DLLPUBLIC DrawFrameFormatHint final: SfxHint + struct DrawFrameFormatHint final: SfxHint { DrawFrameFormatHintId const m_eId; DrawFrameFormatHint(DrawFrameFormatHintId eId) : m_eId(eId) {}; virtual ~DrawFrameFormatHint() override; }; - struct SW_DLLPUBLIC CheckDrawFrameFormatLayerHint final: SfxHint + struct CheckDrawFrameFormatLayerHint final: SfxHint { bool* m_bCheckControlLayer; CheckDrawFrameFormatLayerHint(bool* bCheckControlLayer) : m_bCheckControlLayer(bCheckControlLayer) {}; virtual ~CheckDrawFrameFormatLayerHint() override; }; - struct SW_DLLPUBLIC ContactChangedHint final: SfxHint + struct ContactChangedHint final: SfxHint { SdrObject** m_ppObject; ContactChangedHint(SdrObject** ppObject) : m_ppObject(ppObject) {}; virtual ~ContactChangedHint() override; }; - struct SW_DLLPUBLIC DrawFormatLayoutCopyHint final : SfxHint + struct DrawFormatLayoutCopyHint final : SfxHint { SwDrawFrameFormat& m_rDestFormat; SwDoc& m_rDestDoc; @@ -314,31 +314,31 @@ namespace sw WW8AnchorConvHint(WW8AnchorConvResult& rResult) : m_rResult(rResult) {}; virtual ~WW8AnchorConvHint() override; }; - struct SW_DLLPUBLIC RestoreFlyAnchorHint final : SfxHint + struct RestoreFlyAnchorHint final : SfxHint { const Point m_aPos; RestoreFlyAnchorHint(Point aPos) : m_aPos(aPos) {}; virtual ~RestoreFlyAnchorHint() override; }; - struct SW_DLLPUBLIC CreatePortionHint final : SfxHint + struct CreatePortionHint final : SfxHint { SwDrawContact** m_ppContact; CreatePortionHint(SwDrawContact** ppContact) : m_ppContact(ppContact) {}; virtual ~CreatePortionHint() override; }; - struct SW_DLLPUBLIC CollectTextObjectsHint final : SfxHint + struct CollectTextObjectsHint final : SfxHint { std::list<SdrTextObj*>& m_rTextObjects; CollectTextObjectsHint(std::list<SdrTextObj*>& rTextObjects) : m_rTextObjects(rTextObjects) {}; virtual ~CollectTextObjectsHint() override; }; - struct SW_DLLPUBLIC GetZOrderHint final : SfxHint + struct GetZOrderHint final : SfxHint { sal_uInt32& m_rnZOrder; GetZOrderHint(sal_uInt32& rnZOrder) : m_rnZOrder(rnZOrder) {}; virtual ~GetZOrderHint() override; }; - struct SW_DLLPUBLIC GetObjectConnectedHint final : SfxHint + struct GetObjectConnectedHint final : SfxHint { bool& m_risConnected; const SwRootFrame* m_pRoot; diff --git a/sw/inc/legacyitem.hxx b/sw/inc/legacyitem.hxx index 6df864b9de58..de7764b6c38f 100644 --- a/sw/inc/legacyitem.hxx +++ b/sw/inc/legacyitem.hxx @@ -33,9 +33,9 @@ namespace legacy { namespace SwFormatVert { - sal_uInt16 SW_DLLPUBLIC GetVersion(sal_uInt16 nFileFormatVersion); - void SW_DLLPUBLIC Create(SwFormatVertOrient& rItem, SvStream& rStrm, sal_uInt16 nItemVersion); - SW_DLLPUBLIC SvStream& Store(const SwFormatVertOrient& rItem, SvStream& rStrm, sal_uInt16 nItemVersion); + sal_uInt16 GetVersion(sal_uInt16 nFileFormatVersion); + void Create(SwFormatVertOrient& rItem, SvStream& rStrm, sal_uInt16 nItemVersion); + SvStream& Store(const SwFormatVertOrient& rItem, SvStream& rStrm, sal_uInt16 nItemVersion); } } |