diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-13 00:29:50 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-13 00:29:50 +1100 |
commit | 6858d517574aec65527ffa57b2b936bfa949ae92 (patch) | |
tree | 978455a7e9a2205d6804961bc653e0d7fbdebe30 /sdext | |
parent | e6d6e35320984fe4198314e3ea3a91ead6b41392 (diff) |
vcl: include vcl headers via triangular brackets instead of quotes
Change-Id: I311f7db622ce341527fe12a92b516f800b602f92
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/presenter/PresenterButton.cxx | 2 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterHelpView.cxx | 4 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterNotesView.cxx | 4 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterPaneBorderPainter.cxx | 2 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterSlideShowView.cxx | 2 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterSlideSorter.cxx | 4 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterToolBar.cxx | 4 | ||||
-rw-r--r-- | sdext/source/presenter/PresenterWindowManager.cxx | 4 |
8 files changed, 13 insertions, 13 deletions
diff --git a/sdext/source/presenter/PresenterButton.cxx b/sdext/source/presenter/PresenterButton.cxx index 65c05c57cc38..5193ad3162e5 100644 --- a/sdext/source/presenter/PresenterButton.cxx +++ b/sdext/source/presenter/PresenterButton.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "vcl/svapp.hxx" +#include <vcl/svapp.hxx> #include "PresenterButton.hxx" #include "PresenterCanvasHelper.hxx" #include "PresenterController.hxx" diff --git a/sdext/source/presenter/PresenterHelpView.cxx b/sdext/source/presenter/PresenterHelpView.cxx index d1add25cd397..ad1e87398a2e 100644 --- a/sdext/source/presenter/PresenterHelpView.cxx +++ b/sdext/source/presenter/PresenterHelpView.cxx @@ -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 . */ -#include "vcl/svapp.hxx" -#include "vcl/settings.hxx" +#include <vcl/svapp.hxx> +#include <vcl/settings.hxx> #include "PresenterHelpView.hxx" #include "PresenterButton.hxx" #include "PresenterCanvasHelper.hxx" diff --git a/sdext/source/presenter/PresenterNotesView.cxx b/sdext/source/presenter/PresenterNotesView.cxx index 791c55bca828..914b356b2538 100644 --- a/sdext/source/presenter/PresenterNotesView.cxx +++ b/sdext/source/presenter/PresenterNotesView.cxx @@ -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 . */ -#include "vcl/svapp.hxx" -#include "vcl/settings.hxx" +#include <vcl/svapp.hxx> +#include <vcl/settings.hxx> #include "PresenterNotesView.hxx" #include "PresenterButton.hxx" #include "PresenterCanvasHelper.hxx" diff --git a/sdext/source/presenter/PresenterPaneBorderPainter.cxx b/sdext/source/presenter/PresenterPaneBorderPainter.cxx index dea2b2be76cd..c67fc951698a 100644 --- a/sdext/source/presenter/PresenterPaneBorderPainter.cxx +++ b/sdext/source/presenter/PresenterPaneBorderPainter.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "vcl/svapp.hxx" +#include <vcl/svapp.hxx> #include "PresenterPaneBorderPainter.hxx" #include "PresenterCanvasHelper.hxx" #include "PresenterConfigurationAccess.hxx" diff --git a/sdext/source/presenter/PresenterSlideShowView.cxx b/sdext/source/presenter/PresenterSlideShowView.cxx index 09882941553b..bad972f93f91 100644 --- a/sdext/source/presenter/PresenterSlideShowView.cxx +++ b/sdext/source/presenter/PresenterSlideShowView.cxx @@ -19,7 +19,7 @@ */ #include "PresenterSlideShowView.hxx" -#include "vcl/svapp.hxx" +#include <vcl/svapp.hxx> #include "PresenterCanvasHelper.hxx" #include "PresenterGeometryHelper.hxx" #include "PresenterHelper.hxx" diff --git a/sdext/source/presenter/PresenterSlideSorter.cxx b/sdext/source/presenter/PresenterSlideSorter.cxx index 70f53b67e8f8..6e8716f2062c 100644 --- a/sdext/source/presenter/PresenterSlideSorter.cxx +++ b/sdext/source/presenter/PresenterSlideSorter.cxx @@ -17,8 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "vcl/svapp.hxx" -#include "vcl/settings.hxx" +#include <vcl/svapp.hxx> +#include <vcl/settings.hxx> #include "PresenterSlideSorter.hxx" #include "PresenterButton.hxx" diff --git a/sdext/source/presenter/PresenterToolBar.cxx b/sdext/source/presenter/PresenterToolBar.cxx index bbd179fd461b..50ad1922530a 100644 --- a/sdext/source/presenter/PresenterToolBar.cxx +++ b/sdext/source/presenter/PresenterToolBar.cxx @@ -17,8 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "vcl/svapp.hxx" -#include "vcl/settings.hxx" +#include <vcl/svapp.hxx> +#include <vcl/settings.hxx> #include "PresenterToolBar.hxx" #include "PresenterBitmapContainer.hxx" diff --git a/sdext/source/presenter/PresenterWindowManager.cxx b/sdext/source/presenter/PresenterWindowManager.cxx index 349928ef5f96..3c93ae69eb75 100644 --- a/sdext/source/presenter/PresenterWindowManager.cxx +++ b/sdext/source/presenter/PresenterWindowManager.cxx @@ -20,8 +20,8 @@ #undef ENABLE_PANE_RESIZING //#define ENABLE_PANE_RESIZING -#include "vcl/svapp.hxx" -#include "vcl/settings.hxx" +#include <vcl/svapp.hxx> +#include <vcl/settings.hxx> #include "PresenterWindowManager.hxx" #include "PresenterController.hxx" #include "PresenterGeometryHelper.hxx" |