diff options
author | abdulwd <abdulwd97@gmail.com> | 2016-12-27 14:32:43 +0530 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-01-03 14:50:53 +0000 |
commit | a0f6374670f67646e802aef45d927a8746b2ae12 (patch) | |
tree | 3375108abe5b295901c7c6110bc20d4d4c5a3e73 | |
parent | 9b5ea3a1347f387416a426fee925619d08834cd5 (diff) |
tdf#95416 Two include files moved to sc/inc
Files which references the moved files now include them with #include "bar.hxx" style
Change-Id: Ia69c61f04e4e7ca587c8065c8af6d1de7f33dd5d
Reviewed-on: https://gerrit.libreoffice.org/32443
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
-rw-r--r-- | sc/inc/viewdata.hxx (renamed from sc/source/ui/inc/viewdata.hxx) | 4 | ||||
-rw-r--r-- | sc/inc/viewutil.hxx (renamed from sc/source/ui/inc/viewutil.hxx) | 0 | ||||
-rw-r--r-- | sc/source/core/data/documen2.cxx | 4 | ||||
-rw-r--r-- | sc/source/filter/excel/xestream.cxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/inc/viewdata.hxx b/sc/inc/viewdata.hxx index 1a62a909d10c..1d9dcdaddc36 100644 --- a/sc/source/ui/inc/viewdata.hxx +++ b/sc/inc/viewdata.hxx @@ -16,8 +16,8 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_SC_SOURCE_UI_INC_VIEWDATA_HXX -#define INCLUDED_SC_SOURCE_UI_INC_VIEWDATA_HXX +#ifndef SC_INC_VIEWDATA_HXX +#define SC_INC_VIEWDATA_HXX #include <sfx2/zoomitem.hxx> #include "rangelst.hxx" diff --git a/sc/source/ui/inc/viewutil.hxx b/sc/inc/viewutil.hxx index bbccd75827d2..bbccd75827d2 100644 --- a/sc/source/ui/inc/viewutil.hxx +++ b/sc/inc/viewutil.hxx diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx index 23569de87f72..c199c119d1ed 100644 --- a/sc/source/core/data/documen2.cxx +++ b/sc/source/core/data/documen2.cxx @@ -84,8 +84,8 @@ #include "externalrefmgr.hxx" #include "appoptio.hxx" #include "scmod.hxx" -#include "../../ui/inc/viewdata.hxx" -#include "../../ui/inc/viewutil.hxx" +#include "viewdata.hxx" +#include "viewutil.hxx" #include "tabprotection.hxx" #include "formulaparserpool.hxx" #include "clipparam.hxx" diff --git a/sc/source/filter/excel/xestream.cxx b/sc/source/filter/excel/xestream.cxx index 58d9c761f7af..e0ff274097d7 100644 --- a/sc/source/filter/excel/xestream.cxx +++ b/sc/source/filter/excel/xestream.cxx @@ -44,7 +44,7 @@ #include "globstr.hrc" #include <../../ui/inc/docsh.hxx> -#include <../../ui/inc/viewdata.hxx> +#include "viewdata.hxx" #include <excdoc.hxx> #include <oox/token/tokens.hxx> |