summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-01 18:53:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-05 07:01:44 +0100
commite189a3f5b5c4f381dcf109eb9a2ee9b6d32d5551 (patch)
treeec73a1899adb6af2fa94cff8764fe7bb9b45b34f /vcl
parent2a9e162564a6af63bece77f50fc553640e747b9e (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 'vcl')
-rw-r--r--vcl/inc/BitmapColorizeFilter.hxx2
-rw-r--r--vcl/inc/BitmapFastScaleFilter.hxx2
-rw-r--r--vcl/inc/BitmapInterpolateScaleFilter.hxx2
-rw-r--r--vcl/inc/BitmapLightenFilter.hxx2
-rw-r--r--vcl/inc/opengl/framebuffer.hxx4
-rw-r--r--vcl/inc/qt5/Qt5AccessibleWidget.hxx14
-rw-r--r--vcl/inc/qt5/Qt5Bitmap.hxx2
-rw-r--r--vcl/inc/qt5/Qt5Graphics_Controls.hxx2
-rw-r--r--vcl/inc/qt5/Qt5XAccessible.hxx2
-rw-r--r--vcl/source/control/combobox.cxx18
10 files changed, 25 insertions, 25 deletions
diff --git a/vcl/inc/BitmapColorizeFilter.hxx b/vcl/inc/BitmapColorizeFilter.hxx
index 6265d5a3922e..81b565728490 100644
--- a/vcl/inc/BitmapColorizeFilter.hxx
+++ b/vcl/inc/BitmapColorizeFilter.hxx
@@ -15,7 +15,7 @@
#include <vcl/BitmapFilter.hxx>
-class VCL_DLLPUBLIC BitmapColorizeFilter final : public BitmapFilter
+class BitmapColorizeFilter final : public BitmapFilter
{
public:
BitmapColorizeFilter(Color aColor)
diff --git a/vcl/inc/BitmapFastScaleFilter.hxx b/vcl/inc/BitmapFastScaleFilter.hxx
index 6228987b9087..f8d56517a1da 100644
--- a/vcl/inc/BitmapFastScaleFilter.hxx
+++ b/vcl/inc/BitmapFastScaleFilter.hxx
@@ -14,7 +14,7 @@
#include <vcl/bitmapex.hxx>
#include <vcl/BitmapFilter.hxx>
-class VCL_DLLPUBLIC BitmapFastScaleFilter final : public BitmapFilter
+class BitmapFastScaleFilter final : public BitmapFilter
{
public:
explicit BitmapFastScaleFilter(double fScaleX, double fScaleY)
diff --git a/vcl/inc/BitmapInterpolateScaleFilter.hxx b/vcl/inc/BitmapInterpolateScaleFilter.hxx
index ef79396301d4..0cb707296b7d 100644
--- a/vcl/inc/BitmapInterpolateScaleFilter.hxx
+++ b/vcl/inc/BitmapInterpolateScaleFilter.hxx
@@ -14,7 +14,7 @@
#include <vcl/bitmapex.hxx>
#include <vcl/BitmapFilter.hxx>
-class VCL_DLLPUBLIC BitmapInterpolateScaleFilter final : public BitmapFilter
+class BitmapInterpolateScaleFilter final : public BitmapFilter
{
public:
explicit BitmapInterpolateScaleFilter(double fScaleX, double fScaleY)
diff --git a/vcl/inc/BitmapLightenFilter.hxx b/vcl/inc/BitmapLightenFilter.hxx
index 08480fd43b06..f30e0d5bbff2 100644
--- a/vcl/inc/BitmapLightenFilter.hxx
+++ b/vcl/inc/BitmapLightenFilter.hxx
@@ -13,7 +13,7 @@
#include <vcl/BitmapFilter.hxx>
-class VCL_DLLPUBLIC BitmapLightenFilter final : public BitmapFilter
+class BitmapLightenFilter final : public BitmapFilter
{
public:
virtual BitmapEx execute(BitmapEx const& rBitmapEx) const override;
diff --git a/vcl/inc/opengl/framebuffer.hxx b/vcl/inc/opengl/framebuffer.hxx
index a2dbd1e63282..4445e6198458 100644
--- a/vcl/inc/opengl/framebuffer.hxx
+++ b/vcl/inc/opengl/framebuffer.hxx
@@ -14,7 +14,7 @@
#include <opengl/texture.hxx>
-class VCL_DLLPUBLIC OpenGLFramebuffer final
+class OpenGLFramebuffer final
{
private:
GLuint mnId;
@@ -33,7 +33,7 @@ public:
static void Unbind(GLenum eTarget = GL_FRAMEBUFFER);
- bool IsFree() const;
+ VCL_DLLPUBLIC bool IsFree() const;
bool IsAttached( GLuint nTexture ) const;
bool IsAttached( const OpenGLTexture& rTexture ) const;
void AttachTexture( const OpenGLTexture& rTexture );
diff --git a/vcl/inc/qt5/Qt5AccessibleWidget.hxx b/vcl/inc/qt5/Qt5AccessibleWidget.hxx
index 786f442b1956..2cd4840c6dfa 100644
--- a/vcl/inc/qt5/Qt5AccessibleWidget.hxx
+++ b/vcl/inc/qt5/Qt5AccessibleWidget.hxx
@@ -30,13 +30,13 @@
class Qt5Frame;
class Qt5Widget;
-class VCLPLUG_QT5_PUBLIC Qt5AccessibleWidget final : public QObject,
- public QAccessibleInterface,
- public QAccessibleActionInterface,
- public QAccessibleTextInterface,
- public QAccessibleEditableTextInterface,
- public QAccessibleTableInterface,
- public QAccessibleValueInterface
+class Qt5AccessibleWidget final : public QObject,
+ public QAccessibleInterface,
+ public QAccessibleActionInterface,
+ public QAccessibleTextInterface,
+ public QAccessibleEditableTextInterface,
+ public QAccessibleTableInterface,
+ public QAccessibleValueInterface
{
Q_OBJECT
diff --git a/vcl/inc/qt5/Qt5Bitmap.hxx b/vcl/inc/qt5/Qt5Bitmap.hxx
index cedd1aae1479..8ff4297e43f0 100644
--- a/vcl/inc/qt5/Qt5Bitmap.hxx
+++ b/vcl/inc/qt5/Qt5Bitmap.hxx
@@ -25,7 +25,7 @@
class QImage;
-class VCL_DLLPUBLIC Qt5Bitmap final : public SalBitmap
+class Qt5Bitmap final : public SalBitmap
{
std::unique_ptr<QImage> m_pImage;
BitmapPalette m_aPalette;
diff --git a/vcl/inc/qt5/Qt5Graphics_Controls.hxx b/vcl/inc/qt5/Qt5Graphics_Controls.hxx
index 2676fa6413a4..da1af4dc066b 100644
--- a/vcl/inc/qt5/Qt5Graphics_Controls.hxx
+++ b/vcl/inc/qt5/Qt5Graphics_Controls.hxx
@@ -29,7 +29,7 @@
#include <QtGui/QRegion>
#include <QtWidgets/QPushButton>
-class VCLPLUG_QT5_PUBLIC Qt5Graphics_Controls final : public vcl::WidgetDrawInterface
+class Qt5Graphics_Controls final : public vcl::WidgetDrawInterface
{
std::unique_ptr<QImage> m_image;
QRect m_lastPopupRect;
diff --git a/vcl/inc/qt5/Qt5XAccessible.hxx b/vcl/inc/qt5/Qt5XAccessible.hxx
index 66b3901f0b85..fe8e424e4628 100644
--- a/vcl/inc/qt5/Qt5XAccessible.hxx
+++ b/vcl/inc/qt5/Qt5XAccessible.hxx
@@ -22,7 +22,7 @@ class Qt5Widget;
// Wrapper class to hold a css::accessibility::XAccessible object
// while being able to pass it as a QObject
-class VCLPLUG_QT5_PUBLIC Qt5XAccessible : public QObject
+class Qt5XAccessible : public QObject
{
Q_OBJECT
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index af661ee3a34a..14cb33e74dd7 100644
--- a/vcl/source/control/combobox.cxx
+++ b/vcl/source/control/combobox.cxx
@@ -80,15 +80,15 @@ struct ComboBox::Impl
ComboBoxBounds calcComboBoxDropDownComponentBounds(
const Size &rOutSize, const Size &rBorderOutSize) const;
- DECL_DLLPRIVATE_LINK( ImplSelectHdl, LinkParamNone*, void );
- DECL_DLLPRIVATE_LINK( ImplCancelHdl, LinkParamNone*, void );
- DECL_DLLPRIVATE_LINK( ImplDoubleClickHdl, ImplListBoxWindow*, void );
- DECL_DLLPRIVATE_LINK( ImplClickBtnHdl, void*, void );
- DECL_DLLPRIVATE_LINK( ImplPopupModeEndHdl, FloatingWindow*, void );
- DECL_DLLPRIVATE_LINK( ImplSelectionChangedHdl, sal_Int32, void );
- DECL_DLLPRIVATE_LINK( ImplUserDrawHdl, UserDrawEvent*, void );
- DECL_DLLPRIVATE_LINK( ImplAutocompleteHdl, Edit&, void );
- DECL_DLLPRIVATE_LINK( ImplListItemSelectHdl , LinkParamNone*, void );
+ DECL_LINK( ImplSelectHdl, LinkParamNone*, void );
+ DECL_LINK( ImplCancelHdl, LinkParamNone*, void );
+ DECL_LINK( ImplDoubleClickHdl, ImplListBoxWindow*, void );
+ DECL_LINK( ImplClickBtnHdl, void*, void );
+ DECL_LINK( ImplPopupModeEndHdl, FloatingWindow*, void );
+ DECL_LINK( ImplSelectionChangedHdl, sal_Int32, void );
+ DECL_LINK( ImplUserDrawHdl, UserDrawEvent*, void );
+ DECL_LINK( ImplAutocompleteHdl, Edit&, void );
+ DECL_LINK( ImplListItemSelectHdl , LinkParamNone*, void );
};