diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-13 17:36:53 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-14 09:59:36 +0100 |
commit | 832a120473ff352cd4e3f2c0486c8718806cb2aa (patch) | |
tree | 30c37e5b0115dbc8b2fc632bf5c0a7b467ea2d2c /vcl/source/window/layout.cxx | |
parent | 29e9fe918d10001ddd2c7ce68064397ada98f4f6 (diff) |
don't need to include split.hxx or scrbar.hxx
Change-Id: I775e77a0f303d66ca571e1851205b8286c840bc9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88631
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/window/layout.cxx')
-rw-r--r-- | vcl/source/window/layout.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index cddd8f5519fd..75a6171f5b50 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -14,7 +14,9 @@ #include <vcl/decoview.hxx> #include <vcl/toolkit/dialog.hxx> #include <vcl/layout.hxx> +#include <vcl/scrbar.hxx> #include <vcl/stdtext.hxx> +#include <vcl/split.hxx> #include <vcl/svapp.hxx> #include <vcl/settings.hxx> #include <messagedialog.hxx> @@ -2736,4 +2738,22 @@ void VclDrawingArea::StartDrag(sal_Int8, const Point&) xContainer->StartDrag(this, m_nDragAction); } +VclHPaned::~VclHPaned() +{ +} + +VclVPaned::~VclVPaned() +{ +} + +VclPaned::~VclPaned() +{ + disposeOnce(); +} + +VclScrolledWindow::~VclScrolledWindow() +{ + disposeOnce(); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |