summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-10-29 13:19:47 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-10-29 20:57:15 +0100
commitddd5e2575e869729fb056b29f06cbbaca9f8b05e (patch)
treef512313671796ffd858045cbbc8be480ae8263f3
parent951c7cdbe22cee286e0930db849038e1c872782f (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>
-rw-r--r--solenv/clang-format/blacklist2
-rw-r--r--vcl/source/treelist/iconview.cxx2
-rw-r--r--vcl/source/treelist/iconviewimpl.cxx2
-rw-r--r--vcl/source/treelist/iconviewimpl.hxx (renamed from vcl/inc/iconviewimpl.hxx)2
4 files changed, 4 insertions, 4 deletions
diff --git a/solenv/clang-format/blacklist b/solenv/clang-format/blacklist
index 4dce7973c601..b12f71769717 100644
--- a/solenv/clang-format/blacklist
+++ b/solenv/clang-format/blacklist
@@ -17249,7 +17249,6 @@ vcl/inc/headless/svpvd.hxx
vcl/inc/helpwin.hxx
vcl/inc/hyperlabel.hxx
vcl/inc/iconview.hxx
-vcl/inc/iconviewimpl.hxx
vcl/inc/image.h
vcl/inc/impanmvw.hxx
vcl/inc/impdel.hxx
@@ -17915,6 +17914,7 @@ vcl/source/toolkit/morebtn.cxx
vcl/source/treelist/headbar.cxx
vcl/source/treelist/iconview.cxx
vcl/source/treelist/iconviewimpl.cxx
+vcl/source/treelist/iconviewimpl.hxx
vcl/source/treelist/imap.cxx
vcl/source/treelist/imap2.cxx
vcl/source/treelist/imap3.cxx
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;