summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-02 07:46:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-03 17:12:00 +0100
commit781c4402f1a8c64f87bc81e866bc444b9ed97948 (patch)
treed4429a5cb82a81013732903b57e9a7ebbacc9e4f /include/svx
parent48101a1a0d574db3db1f99c782bd67e885b232bb (diff)
make some classes module-private
improve the script, but it still generates some false positives Change-Id: If8ee1cba8c04ac0be11f73220149e6de15f24f44 Reviewed-on: https://gerrit.libreoffice.org/81929 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/AffineMatrixItem.hxx2
-rw-r--r--include/svx/Palette.hxx2
-rw-r--r--include/svx/galctrl.hxx24
3 files changed, 14 insertions, 14 deletions
diff --git a/include/svx/AffineMatrixItem.hxx b/include/svx/AffineMatrixItem.hxx
index b9559147c58e..6b3cbebf872f 100644
--- a/include/svx/AffineMatrixItem.hxx
+++ b/include/svx/AffineMatrixItem.hxx
@@ -26,7 +26,7 @@
class SfxItemPool;
-class SVX_DLLPUBLIC AffineMatrixItem final : public SfxPoolItem
+class AffineMatrixItem final : public SfxPoolItem
{
private:
css::geometry::AffineMatrix2D maMatrix;
diff --git a/include/svx/Palette.hxx b/include/svx/Palette.hxx
index f66d06b30b05..0ce1722ff130 100644
--- a/include/svx/Palette.hxx
+++ b/include/svx/Palette.hxx
@@ -28,7 +28,7 @@ class SvxColorValueSet;
typedef std::pair<Color, OUString> NamedColor;
-class SVX_DLLPUBLIC Palette
+class Palette
{
public:
virtual ~Palette();
diff --git a/include/svx/galctrl.hxx b/include/svx/galctrl.hxx
index e43453c5b2de..ddbcbb3a60cf 100644
--- a/include/svx/galctrl.hxx
+++ b/include/svx/galctrl.hxx
@@ -32,7 +32,7 @@ class GalleryTheme;
class GalleryBrowser2;
class INetURLObject;
-class SVX_DLLPUBLIC GalleryPreview final : public vcl::Window, public DropTargetHelper, public DragSourceHelper
+class GalleryPreview final : public vcl::Window, public DropTargetHelper, public DragSourceHelper
{
private:
@@ -40,24 +40,24 @@ private:
tools::Rectangle aPreviewRect;
GalleryTheme* const mpTheme;
- SVX_DLLPRIVATE bool ImplGetGraphicCenterRect( const Graphic& rGraphic, tools::Rectangle& rResultRect ) const;
- SVX_DLLPRIVATE void InitSettings();
+ bool ImplGetGraphicCenterRect( const Graphic& rGraphic, tools::Rectangle& rResultRect ) const;
+ void InitSettings();
// Window
- SVX_DLLPRIVATE virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
- SVX_DLLPRIVATE virtual Size GetOptimalSize() const override;
- SVX_DLLPRIVATE virtual void MouseButtonDown(const MouseEvent& rMEvt) override;
- SVX_DLLPRIVATE virtual void Command(const CommandEvent& rCEvt) override;
- SVX_DLLPRIVATE virtual void KeyInput( const KeyEvent& rKEvt ) override;
- SVX_DLLPRIVATE virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
+ virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
+ virtual Size GetOptimalSize() const override;
+ virtual void MouseButtonDown(const MouseEvent& rMEvt) override;
+ virtual void Command(const CommandEvent& rCEvt) override;
+ virtual void KeyInput( const KeyEvent& rKEvt ) override;
+ virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
// DropTargetHelper
- SVX_DLLPRIVATE virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
- SVX_DLLPRIVATE virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
+ virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
+ virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
// DragSourceHelper
- SVX_DLLPRIVATE virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) override;
+ virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel ) override;
public: