summaryrefslogtreecommitdiff
path: root/include/vcl/layout.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-06 07:42:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-15 08:13:06 +0100
commit158fbb78cad97787e193cf95832fe26da69e4403 (patch)
tree63ce489df745629a119ad4142364bccd5cf8670c /include/vcl/layout.hxx
parent3c825bcc483d24bc408f7438d966c79a1f5b084c (diff)
make some classes module-private
Change-Id: I95845d7217fc5e77e3f8e205030e9cd761ad0cc5 Reviewed-on: https://gerrit.libreoffice.org/82116 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/layout.hxx')
-rw-r--r--include/vcl/layout.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index 57ca15260f05..f60014bb315d 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -370,7 +370,7 @@ public:
virtual void setAllocation(const Size &rAllocation) override;
};
-class VCL_DLLPUBLIC VclPaned : public VclContainer
+class VclPaned : public VclContainer
{
protected:
VclPtr<Splitter> m_pSplitter;
@@ -384,7 +384,7 @@ public:
void set_position(long nPosition) { m_nPosition = nPosition; }
};
-class VCL_DLLPUBLIC VclVPaned final : public VclPaned
+class VclVPaned final : public VclPaned
{
private:
DECL_LINK(SplitHdl, Splitter*, void);
@@ -396,7 +396,7 @@ public:
virtual void setAllocation(const Size &rAllocation) override;
};
-class VCL_DLLPUBLIC VclHPaned final : public VclPaned
+class VclHPaned final : public VclPaned
{
private:
DECL_LINK(SplitHdl, Splitter*, void);
@@ -408,7 +408,7 @@ public:
virtual void setAllocation(const Size &rAllocation) override;
};
-class VCL_DLLPUBLIC VclFrame final : public VclBin
+class VclFrame final : public VclBin
{
private:
VclPtr<vcl::Window> m_pLabel;
@@ -458,7 +458,7 @@ private:
sal_Int32 m_nTopPadding;
};
-class VCL_DLLPUBLIC VclExpander final : public VclBin
+class VclExpander final : public VclBin
{
public:
VclExpander(vcl::Window *pParent)
@@ -494,7 +494,7 @@ private:
bool m_bResizeTopLevel;
VclPtr<DisclosureButton> m_pDisclosureButton;
Link<VclExpander&,void> maExpandedHdl;
- DECL_DLLPRIVATE_LINK(ClickHdl, CheckBox&, void);
+ DECL_LINK(ClickHdl, CheckBox&, void);
};
class VCL_DLLPUBLIC VclScrolledWindow final : public VclBin
@@ -526,7 +526,7 @@ private:
VclPtr<ScrollBarBox> m_aScrollBarBox;
};
-class VCL_DLLPUBLIC VclViewport final : public VclBin
+class VclViewport final : public VclBin
{
public:
VclViewport(vcl::Window *pParent)
@@ -544,7 +544,7 @@ private:
//
//by default the Commands are discarded, inherit from this
//and implement "Command" to get them
-class VCL_DLLPUBLIC VclEventBox final : public VclBin
+class VclEventBox final : public VclBin
{
private:
//Any Commands an EventBoxHelper receives are forwarded to its parent
@@ -585,7 +585,7 @@ public:
virtual void Command(const CommandEvent& rCEvt) override;
};
-class VCL_DLLPUBLIC VclSizeGroup
+class VclSizeGroup
{
private:
std::set< VclPtr<vcl::Window> > m_aWindows;