summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-05 13:19:04 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-06 06:28:05 +0100
commit5d7af3c38b618d438e065da9d90668e7c4baa849 (patch)
tree4af29272478fb9f5f833307f56d892739e09829e /include/vcl
parent7b99cdb2d77a3feaf9b782c1e656f2d922e2746e (diff)
make some classes module-private
Change-Id: I00ab3a3f6a8bbc85320e7b4fd1aa13af798e7e4c Reviewed-on: https://gerrit.libreoffice.org/82062 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/salnativewidgets.hxx2
-rw-r--r--include/vcl/txtattr.hxx2
-rw-r--r--include/vcl/uitest/uiobject.hxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx
index ef333a9bd196..47ff2c8ee7ce 100644
--- a/include/vcl/salnativewidgets.hxx
+++ b/include/vcl/salnativewidgets.hxx
@@ -383,7 +383,7 @@ namespace o3tl
template<> struct typed_flags<TabitemFlags> : is_typed_flags<TabitemFlags, 0x0f> {};
}
-class VCL_DLLPUBLIC TabitemValue final : public ImplControlValue
+class TabitemValue final : public ImplControlValue
{
public:
TabitemFlags mnAlignment;
diff --git a/include/vcl/txtattr.hxx b/include/vcl/txtattr.hxx
index 4c89f97ad621..a77ad3c786b6 100644
--- a/include/vcl/txtattr.hxx
+++ b/include/vcl/txtattr.hxx
@@ -89,7 +89,7 @@ public:
FontWeight getFontWeight() const { return meWeight; }
};
-class VCL_DLLPUBLIC TextAttribProtect final : public TextAttrib
+class TextAttribProtect final : public TextAttrib
{
public:
TextAttribProtect();
diff --git a/include/vcl/uitest/uiobject.hxx b/include/vcl/uitest/uiobject.hxx
index 07f4e287e211..9afbdbc5a3b4 100644
--- a/include/vcl/uitest/uiobject.hxx
+++ b/include/vcl/uitest/uiobject.hxx
@@ -266,7 +266,7 @@ private:
virtual OUString get_name() const override;
};
-class UITEST_DLLPUBLIC TabPageUIObject final : public WindowUIObject
+class TabPageUIObject final : public WindowUIObject
{
private:
VclPtr<TabPage> mxTabPage;
@@ -382,7 +382,7 @@ private:
virtual OUString get_name() const override;
};
-class UITEST_DLLPUBLIC TabControlUIObject final : public WindowUIObject
+class TabControlUIObject final : public WindowUIObject
{
private:
VclPtr<TabControl> mxTabControl;