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 /sd | |
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 'sd')
-rw-r--r-- | sd/inc/helper/simplereferencecomponent.hxx | 4 | ||||
-rw-r--r-- | sd/inc/undo/undomanager.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/inc/TemplateScanner.hxx | 3 | ||||
-rw-r--r-- | sd/source/ui/inc/WindowUpdater.hxx | 5 | ||||
-rw-r--r-- | sd/source/ui/inc/drawview.hxx | 2 |
5 files changed, 7 insertions, 9 deletions
diff --git a/sd/inc/helper/simplereferencecomponent.hxx b/sd/inc/helper/simplereferencecomponent.hxx index 759e1c70b2f1..53ad24a9ef6a 100644 --- a/sd/inc/helper/simplereferencecomponent.hxx +++ b/sd/inc/helper/simplereferencecomponent.hxx @@ -41,8 +41,8 @@ public: the total number of calls to release() by a platform dependent amount (which, hopefully, is quite large). */ - SD_DLLPUBLIC void acquire(); - SD_DLLPUBLIC void release(); + void acquire(); + void release(); void Dispose(); diff --git a/sd/inc/undo/undomanager.hxx b/sd/inc/undo/undomanager.hxx index bed4f0f798f0..57df73cd193a 100644 --- a/sd/inc/undo/undomanager.hxx +++ b/sd/inc/undo/undomanager.hxx @@ -26,7 +26,7 @@ namespace sd { -class SD_DLLPUBLIC UndoManager final : public SdrUndoManager +class UndoManager final : public SdrUndoManager { public: UndoManager(); diff --git a/sd/source/ui/inc/TemplateScanner.hxx b/sd/source/ui/inc/TemplateScanner.hxx index 552159e0b89a..4a73c6d09842 100644 --- a/sd/source/ui/inc/TemplateScanner.hxx +++ b/sd/source/ui/inc/TemplateScanner.hxx @@ -62,8 +62,7 @@ public: supported format) last. When a step does not add a new template then the value of the previous step is returned. */ -class SD_DLLPUBLIC TemplateScanner - : public ::sd::tools::AsynchronousTask +class TemplateScanner : public ::sd::tools::AsynchronousTask { public: /** Create a new template scanner and prepare but do not execute the scanning. diff --git a/sd/source/ui/inc/WindowUpdater.hxx b/sd/source/ui/inc/WindowUpdater.hxx index c244624cd60c..a9d5947a9939 100644 --- a/sd/source/ui/inc/WindowUpdater.hxx +++ b/sd/source/ui/inc/WindowUpdater.hxx @@ -47,8 +47,7 @@ namespace sd { <member>RegisterWindow()</member> method. When a document is given then this document is reformatted when the monitored option changes.</p> */ -class SD_DLLPUBLIC WindowUpdater - : public utl::ConfigurationListener +class WindowUpdater : public utl::ConfigurationListener { public: explicit WindowUpdater(); @@ -115,7 +114,7 @@ private: The output device to update. When it is <null/> then the call is ignored. */ - SAL_DLLPRIVATE void UpdateWindow (OutputDevice* pDevice) const; + void UpdateWindow (OutputDevice* pDevice) const; }; } // end of namespace sd diff --git a/sd/source/ui/inc/drawview.hxx b/sd/source/ui/inc/drawview.hxx index 2d41de1af250..34360c61c772 100644 --- a/sd/source/ui/inc/drawview.hxx +++ b/sd/source/ui/inc/drawview.hxx @@ -30,7 +30,7 @@ class DrawViewShell; /** * Derivative of ::sd::View; contains also a pointer to the document */ -class SD_DLLPUBLIC DrawView : public ::sd::View +class DrawView : public ::sd::View { public: |