diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-01 18:53:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-05 07:01:44 +0100 |
commit | e189a3f5b5c4f381dcf109eb9a2ee9b6d32d5551 (patch) | |
tree | ec73a1899adb6af2fa94cff8764fe7bb9b45b34f /include/svx | |
parent | 2a9e162564a6af63bece77f50fc553640e747b9e (diff) |
make some classes module private
Mark some stuff SAL_DLLPUBLIC_RTTI in
include/vcl/metaact.hxx
in order to make ASAN happy.
Change-Id: I97febe0968bf58b9cbe60ce647f0ada25e6f4bb0
Reviewed-on: https://gerrit.libreoffice.org/84202
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/fmgridif.hxx | 2 | ||||
-rw-r--r-- | include/svx/gridctrl.hxx | 2 | ||||
-rw-r--r-- | include/svx/svdundo.hxx | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/fmgridif.hxx b/include/svx/fmgridif.hxx index 8b2cdb5e4e29..b438e2aace31 100644 --- a/include/svx/fmgridif.hxx +++ b/include/svx/fmgridif.hxx @@ -366,7 +366,7 @@ private: // (I would like to have a vector here but including the stl in an exported file seems // very risky to me...) - class GridListenerDelegator; + class SAL_DLLPRIVATE GridListenerDelegator; friend class GridListenerDelegator; std::unique_ptr<GridListenerDelegator> m_pGridListener; diff --git a/include/svx/gridctrl.hxx b/include/svx/gridctrl.hxx index a3e8c4163307..8dbb1c106b78 100644 --- a/include/svx/gridctrl.hxx +++ b/include/svx/gridctrl.hxx @@ -170,7 +170,7 @@ public: // NavigationBar - class NavigationBar final : public Control + class SAL_DLLPRIVATE NavigationBar final : public Control { class AbsolutePos : public NumericField { diff --git a/include/svx/svdundo.hxx b/include/svx/svdundo.hxx index 99acdb55660b..67316f7792c7 100644 --- a/include/svx/svdundo.hxx +++ b/include/svx/svdundo.hxx @@ -514,7 +514,7 @@ public: * ABC for all UndoActions that have something to do with SdrPages. */ -class SVX_DLLPUBLIC SdrUndoPage : public SdrUndoAction +class SdrUndoPage : public SdrUndoAction { protected: SdrPage& mrPage; @@ -618,7 +618,7 @@ public: * Create Action before moving the Page. */ -class SVX_DLLPUBLIC SdrUndoSetPageNum final : public SdrUndoPage +class SdrUndoSetPageNum final : public SdrUndoPage { sal_uInt16 const nOldPageNum; sal_uInt16 const nNewPageNum; @@ -678,7 +678,7 @@ public: * Create Action before changing the MasterPageDescriptors. */ -class SVX_DLLPUBLIC SdrUndoPageChangeMasterPage final : public SdrUndoPageMasterPage +class SdrUndoPageChangeMasterPage final : public SdrUndoPageMasterPage { bool mbNewHadMasterPage; SdrLayerIDSet maNewSet; |