diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-29 13:19:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-29 20:57:15 +0100 |
commit | ddd5e2575e869729fb056b29f06cbbaca9f8b05e (patch) | |
tree | f512313671796ffd858045cbbc8be480ae8263f3 /vcl | |
parent | 951c7cdbe22cee286e0930db849038e1c872782f (diff) |
can move iconviewimpl.hxx beside iconviewimpl.cxx
Change-Id: I48d5df7d6ebf8e22a265e163caaf759ac703f616
Reviewed-on: https://gerrit.libreoffice.org/81681
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/treelist/iconview.cxx | 2 | ||||
-rw-r--r-- | vcl/source/treelist/iconviewimpl.cxx | 2 | ||||
-rw-r--r-- | vcl/source/treelist/iconviewimpl.hxx (renamed from vcl/inc/iconviewimpl.hxx) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/treelist/iconview.cxx b/vcl/source/treelist/iconview.cxx index 5c2e5b2ffed5..45740a38cde5 100644 --- a/vcl/source/treelist/iconview.cxx +++ b/vcl/source/treelist/iconview.cxx @@ -20,7 +20,7 @@ #include <vcl/treelistentry.hxx> #include <vcl/viewdataentry.hxx> #include <iconview.hxx> -#include <iconviewimpl.hxx> +#include "iconviewimpl.hxx" IconView::IconView( vcl::Window* pParent, WinBits nBits ) : SvTreeListBox( pParent, nBits ) diff --git a/vcl/source/treelist/iconviewimpl.cxx b/vcl/source/treelist/iconviewimpl.cxx index 9014220d4820..c9c5e530592f 100644 --- a/vcl/source/treelist/iconviewimpl.cxx +++ b/vcl/source/treelist/iconviewimpl.cxx @@ -20,7 +20,7 @@ #include <vcl/svapp.hxx> #include <tools/debug.hxx> #include <iconview.hxx> -#include <iconviewimpl.hxx> +#include "iconviewimpl.hxx" IconViewImpl::IconViewImpl( SvTreeListBox* pTreeListBox, SvTreeList* pTreeList, WinBits nWinStyle ) : SvImpLBox( pTreeListBox, pTreeList, nWinStyle ) diff --git a/vcl/inc/iconviewimpl.hxx b/vcl/source/treelist/iconviewimpl.hxx index a2f1aef16c37..5f8d4d89956e 100644 --- a/vcl/inc/iconviewimpl.hxx +++ b/vcl/source/treelist/iconviewimpl.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_VCL_SOURCE_INC_ICONVIEWIMPL_HXX #define INCLUDED_VCL_SOURCE_INC_ICONVIEWIMPL_HXX -#include "svimpbox.hxx" +#include <svimpbox.hxx> class SvTreeListBox; class Point; |