summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-22 08:40:43 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-22 20:31:27 +0100
commit5f520f757774db17ea4e33d34c724cf2af3adcba (patch)
tree311668c50e69fa29f6e9d54605a361f374c00147 /sd/inc
parentf394ea0b6b58ed516977803f00c0147bb0facc25 (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/inc')
-rw-r--r--sd/inc/helper/simplereferencecomponent.hxx4
-rw-r--r--sd/inc/undo/undomanager.hxx2
2 files changed, 3 insertions, 3 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();