summaryrefslogtreecommitdiff
path: root/sfx2/source/sidebar
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-11-11 22:11:22 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-11-11 22:37:26 -0600
commit9a26a423540530a5f31c57e03363b2d2b7184b5e (patch)
tree3353e566940a12cd688785ca6841a0bdd2e28f43 /sfx2/source/sidebar
parent4ac9fa7a887d09edf7f1fc38f155a93cff30ac97 (diff)
sfx2: include <> for external includes
Change-Id: I63de4bc034020d19abd20f301194482da9a604f4
Diffstat (limited to 'sfx2/source/sidebar')
-rw-r--r--sfx2/source/sidebar/CommandInfoProvider.cxx2
-rw-r--r--sfx2/source/sidebar/Context.hxx2
-rw-r--r--sfx2/source/sidebar/ContextChangeBroadcaster.cxx4
-rw-r--r--sfx2/source/sidebar/ControlFactory.cxx2
-rw-r--r--sfx2/source/sidebar/ControllerFactory.cxx6
-rw-r--r--sfx2/source/sidebar/ControllerItem.cxx6
-rw-r--r--sfx2/source/sidebar/Deck.cxx4
-rw-r--r--sfx2/source/sidebar/DeckDescriptor.hxx2
-rw-r--r--sfx2/source/sidebar/DeckLayouter.cxx2
-rw-r--r--sfx2/source/sidebar/DeckTitleBar.cxx6
-rw-r--r--sfx2/source/sidebar/DrawHelper.hxx2
-rw-r--r--sfx2/source/sidebar/FocusManager.cxx2
-rw-r--r--sfx2/source/sidebar/MenuButton.cxx4
-rw-r--r--sfx2/source/sidebar/MenuButton.hxx2
-rw-r--r--sfx2/source/sidebar/Paint.cxx2
-rw-r--r--sfx2/source/sidebar/Panel.cxx4
-rw-r--r--sfx2/source/sidebar/PanelDescriptor.hxx2
-rw-r--r--sfx2/source/sidebar/PanelTitleBar.cxx8
-rw-r--r--sfx2/source/sidebar/PopupContainer.cxx2
-rw-r--r--sfx2/source/sidebar/ResourceManager.cxx2
-rw-r--r--sfx2/source/sidebar/Sidebar.cxx2
-rw-r--r--sfx2/source/sidebar/SidebarChildWindow.cxx6
-rw-r--r--sfx2/source/sidebar/SidebarController.cxx10
-rw-r--r--sfx2/source/sidebar/SidebarDockingWindow.cxx6
-rw-r--r--sfx2/source/sidebar/SidebarDockingWindow.hxx4
-rw-r--r--sfx2/source/sidebar/SidebarPanel.cxx2
-rw-r--r--sfx2/source/sidebar/SidebarPanelBase.cxx10
-rw-r--r--sfx2/source/sidebar/SidebarToolBox.cxx8
-rw-r--r--sfx2/source/sidebar/TabBar.cxx4
-rw-r--r--sfx2/source/sidebar/TabItem.cxx4
-rw-r--r--sfx2/source/sidebar/TabItem.hxx2
-rw-r--r--sfx2/source/sidebar/Theme.cxx4
-rw-r--r--sfx2/source/sidebar/TitleBar.hxx2
-rw-r--r--sfx2/source/sidebar/ToolBox.hxx2
-rw-r--r--sfx2/source/sidebar/Tools.cxx6
35 files changed, 69 insertions, 69 deletions
diff --git a/sfx2/source/sidebar/CommandInfoProvider.cxx b/sfx2/source/sidebar/CommandInfoProvider.cxx
index 2fadc1c7fe38..aff8f94d2f3a 100644
--- a/sfx2/source/sidebar/CommandInfoProvider.cxx
+++ b/sfx2/source/sidebar/CommandInfoProvider.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sfx2/sidebar/CommandInfoProvider.hxx"
+#include <sfx2/sidebar/CommandInfoProvider.hxx>
#include <comphelper/processfactory.hxx>
#include <svtools/acceleratorexecute.hxx>
diff --git a/sfx2/source/sidebar/Context.hxx b/sfx2/source/sidebar/Context.hxx
index 71c744565bdc..f2cabedf2138 100644
--- a/sfx2/source/sidebar/Context.hxx
+++ b/sfx2/source/sidebar/Context.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_CONTEXT_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_CONTEXT_HXX
-#include "rtl/ustring.hxx"
+#include <rtl/ustring.hxx>
#include <vector>
diff --git a/sfx2/source/sidebar/ContextChangeBroadcaster.cxx b/sfx2/source/sidebar/ContextChangeBroadcaster.cxx
index 57d820f1c2c1..f29fffaa03fa 100644
--- a/sfx2/source/sidebar/ContextChangeBroadcaster.cxx
+++ b/sfx2/source/sidebar/ContextChangeBroadcaster.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 "sfx2/sidebar/ContextChangeBroadcaster.hxx"
-#include "sfx2/sidebar/EnumContext.hxx"
+#include <sfx2/sidebar/ContextChangeBroadcaster.hxx>
+#include <sfx2/sidebar/EnumContext.hxx>
#include <com/sun/star/ui/ContextChangeEventObject.hpp>
#include <com/sun/star/ui/ContextChangeEventMultiplexer.hpp>
#include <com/sun/star/frame/ModuleManager.hpp>
diff --git a/sfx2/source/sidebar/ControlFactory.cxx b/sfx2/source/sidebar/ControlFactory.cxx
index 936357ab93f1..ff24c9df16c4 100644
--- a/sfx2/source/sidebar/ControlFactory.cxx
+++ b/sfx2/source/sidebar/ControlFactory.cxx
@@ -20,7 +20,7 @@
#include "MenuButton.hxx"
#include "TabItem.hxx"
-#include "sfx2/sidebar/SidebarToolBox.hxx"
+#include <sfx2/sidebar/SidebarToolBox.hxx>
#include <vcl/toolbox.hxx>
diff --git a/sfx2/source/sidebar/ControllerFactory.cxx b/sfx2/source/sidebar/ControllerFactory.cxx
index 80d372c9c47d..57fe4a38ab7c 100644
--- a/sfx2/source/sidebar/ControllerFactory.cxx
+++ b/sfx2/source/sidebar/ControllerFactory.cxx
@@ -17,9 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sfx2/sidebar/ControllerFactory.hxx"
-#include "sfx2/sidebar/CommandInfoProvider.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/ControllerFactory.hxx>
+#include <sfx2/sidebar/CommandInfoProvider.hxx>
+#include <sfx2/sidebar/Tools.hxx>
#include <com/sun/star/frame/XToolbarController.hpp>
#include <com/sun/star/frame/XFrame.hpp>
diff --git a/sfx2/source/sidebar/ControllerItem.cxx b/sfx2/source/sidebar/ControllerItem.cxx
index 88ec38b0a917..3afbab8d4425 100644
--- a/sfx2/source/sidebar/ControllerItem.cxx
+++ b/sfx2/source/sidebar/ControllerItem.cxx
@@ -20,10 +20,10 @@
#include <sfx2/msgpool.hxx>
#include <sfx2/viewsh.hxx>
-#include "sfx2/imagemgr.hxx"
-#include "sfx2/bindings.hxx"
+#include <sfx2/imagemgr.hxx>
+#include <sfx2/bindings.hxx>
#include <unotools/cmdoptions.hxx>
-#include "sfx2/sidebar/CommandInfoProvider.hxx"
+#include <sfx2/sidebar/CommandInfoProvider.hxx>
#include <vcl/svapp.hxx>
#include <vcl/toolbox.hxx>
#include <vcl/help.hxx>
diff --git a/sfx2/source/sidebar/Deck.cxx b/sfx2/source/sidebar/Deck.cxx
index 6e338d83f86c..6a81093b437f 100644
--- a/sfx2/source/sidebar/Deck.cxx
+++ b/sfx2/source/sidebar/Deck.cxx
@@ -25,8 +25,8 @@
#include "PanelTitleBar.hxx"
#include "Paint.hxx"
#include "Panel.hxx"
-#include "sfx2/sidebar/Tools.hxx"
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Tools.hxx>
+#include <sfx2/sidebar/Theme.hxx>
#include <vcl/dockwin.hxx>
#include <vcl/scrbar.hxx>
diff --git a/sfx2/source/sidebar/DeckDescriptor.hxx b/sfx2/source/sidebar/DeckDescriptor.hxx
index 3959bbe4db8c..195533eab9ea 100644
--- a/sfx2/source/sidebar/DeckDescriptor.hxx
+++ b/sfx2/source/sidebar/DeckDescriptor.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_DECKDESCRIPTOR_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_DECKDESCRIPTOR_HXX
-#include "sfx2/sidebar/EnumContext.hxx"
+#include <sfx2/sidebar/EnumContext.hxx>
#include "ContextList.hxx"
#include <boost/shared_ptr.hpp>
diff --git a/sfx2/source/sidebar/DeckLayouter.cxx b/sfx2/source/sidebar/DeckLayouter.cxx
index fccd797ed720..9dcc3585a6ee 100644
--- a/sfx2/source/sidebar/DeckLayouter.cxx
+++ b/sfx2/source/sidebar/DeckLayouter.cxx
@@ -18,7 +18,7 @@
*/
#include "DeckLayouter.hxx"
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Theme.hxx>
#include "Panel.hxx"
#include "PanelTitleBar.hxx"
#include "Deck.hxx"
diff --git a/sfx2/source/sidebar/DeckTitleBar.cxx b/sfx2/source/sidebar/DeckTitleBar.cxx
index 7c8c3f93432e..6e1d10c9aef1 100644
--- a/sfx2/source/sidebar/DeckTitleBar.cxx
+++ b/sfx2/source/sidebar/DeckTitleBar.cxx
@@ -18,14 +18,14 @@
*/
#include "DeckTitleBar.hxx"
-#include "sfx2/sidebar/Theme.hxx"
-#include "sfx2/sfxresid.hxx"
+#include <sfx2/sidebar/Theme.hxx>
+#include <sfx2/sfxresid.hxx>
#include "Sidebar.hrc"
#include <vcl/image.hxx>
#ifdef DEBUG
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
#endif
diff --git a/sfx2/source/sidebar/DrawHelper.hxx b/sfx2/source/sidebar/DrawHelper.hxx
index df521c7ebe5f..9357891f1e39 100644
--- a/sfx2/source/sidebar/DrawHelper.hxx
+++ b/sfx2/source/sidebar/DrawHelper.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_DRAWHELPER_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_DRAWHELPER_HXX
-#include "vcl/window.hxx"
+#include <vcl/window.hxx>
#include <tools/svborder.hxx>
diff --git a/sfx2/source/sidebar/FocusManager.cxx b/sfx2/source/sidebar/FocusManager.cxx
index f284a2615c00..fa8fdf615680 100644
--- a/sfx2/source/sidebar/FocusManager.cxx
+++ b/sfx2/source/sidebar/FocusManager.cxx
@@ -21,7 +21,7 @@
#include "Panel.hxx"
#include "DeckTitleBar.hxx"
#include "PanelTitleBar.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
#include "TitleBar.hxx"
#include <vcl/button.hxx>
#include <vcl/toolbox.hxx>
diff --git a/sfx2/source/sidebar/MenuButton.cxx b/sfx2/source/sidebar/MenuButton.cxx
index 697db55ac165..244d02d7edb2 100644
--- a/sfx2/source/sidebar/MenuButton.cxx
+++ b/sfx2/source/sidebar/MenuButton.cxx
@@ -21,8 +21,8 @@
#include "DrawHelper.hxx"
#include "Paint.hxx"
-#include "sfx2/sidebar/Tools.hxx"
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Tools.hxx>
+#include <sfx2/sidebar/Theme.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
diff --git a/sfx2/source/sidebar/MenuButton.hxx b/sfx2/source/sidebar/MenuButton.hxx
index adfb7fa0751d..c7e855411fd9 100644
--- a/sfx2/source/sidebar/MenuButton.hxx
+++ b/sfx2/source/sidebar/MenuButton.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_MENUBUTTON_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_MENUBUTTON_HXX
-#include "vcl/button.hxx"
+#include <vcl/button.hxx>
namespace sfx2 { namespace sidebar {
diff --git a/sfx2/source/sidebar/Paint.cxx b/sfx2/source/sidebar/Paint.cxx
index d7396bb6b0f1..d2819bc1f3f4 100644
--- a/sfx2/source/sidebar/Paint.cxx
+++ b/sfx2/source/sidebar/Paint.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "Paint.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
#include <com/sun/star/awt/Gradient.hpp>
diff --git a/sfx2/source/sidebar/Panel.cxx b/sfx2/source/sidebar/Panel.cxx
index d71c8130fabb..f6f738d30f21 100644
--- a/sfx2/source/sidebar/Panel.cxx
+++ b/sfx2/source/sidebar/Panel.cxx
@@ -20,12 +20,12 @@
#include "Panel.hxx"
#include "PanelTitleBar.hxx"
#include "PanelDescriptor.hxx"
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Theme.hxx>
#include "Paint.hxx"
#include "ResourceManager.hxx"
#ifdef DEBUG
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
#include "Deck.hxx"
#endif
diff --git a/sfx2/source/sidebar/PanelDescriptor.hxx b/sfx2/source/sidebar/PanelDescriptor.hxx
index 90450cde2f64..c7e16396f86c 100644
--- a/sfx2/source/sidebar/PanelDescriptor.hxx
+++ b/sfx2/source/sidebar/PanelDescriptor.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_PANELDESCRIPTOR_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_PANELDESCRIPTOR_HXX
-#include "sfx2/sidebar/EnumContext.hxx"
+#include <sfx2/sidebar/EnumContext.hxx>
#include "ContextList.hxx"
#include <boost/shared_ptr.hpp>
diff --git a/sfx2/source/sidebar/PanelTitleBar.cxx b/sfx2/source/sidebar/PanelTitleBar.cxx
index 33fe8cfa4bfa..e6204bd0edf0 100644
--- a/sfx2/source/sidebar/PanelTitleBar.cxx
+++ b/sfx2/source/sidebar/PanelTitleBar.cxx
@@ -18,14 +18,14 @@
*/
#include "PanelTitleBar.hxx"
-#include "sfx2/sfxresid.hxx"
+#include <sfx2/sfxresid.hxx>
#include "Sidebar.hrc"
#include "Paint.hxx"
#include "Panel.hxx"
-#include "sfx2/sidebar/Theme.hxx"
-#include "sfx2/sidebar/ControllerFactory.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Theme.hxx>
+#include <sfx2/sidebar/ControllerFactory.hxx>
+#include <sfx2/sidebar/Tools.hxx>
#include <tools/svborder.hxx>
#include <vcl/gradient.hxx>
#include <vcl/image.hxx>
diff --git a/sfx2/source/sidebar/PopupContainer.cxx b/sfx2/source/sidebar/PopupContainer.cxx
index 06853902d495..2ec4c56f495c 100644
--- a/sfx2/source/sidebar/PopupContainer.cxx
+++ b/sfx2/source/sidebar/PopupContainer.cxx
@@ -18,7 +18,7 @@
*/
#include "precompiled_sfx2.hxx"
-#include "sfx2/sidebar/PopupContainer.hxx"
+#include <sfx2/sidebar/PopupContainer.hxx>
namespace sfx2 { namespace sidebar {
diff --git a/sfx2/source/sidebar/ResourceManager.cxx b/sfx2/source/sidebar/ResourceManager.cxx
index ed05375c09ac..d085ae9a531f 100644
--- a/sfx2/source/sidebar/ResourceManager.cxx
+++ b/sfx2/source/sidebar/ResourceManager.cxx
@@ -18,7 +18,7 @@
*/
#include "ResourceManager.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
#include <unotools/confignode.hxx>
#include <comphelper/processfactory.hxx>
diff --git a/sfx2/source/sidebar/Sidebar.cxx b/sfx2/source/sidebar/Sidebar.cxx
index a7ef2ccfb805..17ff2a2e1bc6 100644
--- a/sfx2/source/sidebar/Sidebar.cxx
+++ b/sfx2/source/sidebar/Sidebar.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sfx2/sidebar/Sidebar.hxx"
+#include <sfx2/sidebar/Sidebar.hxx>
#include "SidebarController.hxx"
#include "ResourceManager.hxx"
diff --git a/sfx2/source/sidebar/SidebarChildWindow.cxx b/sfx2/source/sidebar/SidebarChildWindow.cxx
index 10afde2af123..8ef593acd01c 100644
--- a/sfx2/source/sidebar/SidebarChildWindow.cxx
+++ b/sfx2/source/sidebar/SidebarChildWindow.cxx
@@ -18,11 +18,11 @@
*/
#include "TabBar.hxx"
-#include "sfx2/sidebar/SidebarChildWindow.hxx"
+#include <sfx2/sidebar/SidebarChildWindow.hxx>
#include "SidebarDockingWindow.hxx"
-#include "sfx2/sfxsids.hrc"
+#include <sfx2/sfxsids.hrc>
#include "helpid.hrc"
-#include "sfx2/dockwin.hxx"
+#include <sfx2/dockwin.hxx>
#include <sfx2/sidebar/ResourceDefinitions.hrc>
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index 02bd0760f979..97fd3cf58c7e 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -24,15 +24,15 @@
#include "SidebarPanel.hxx"
#include "SidebarResource.hxx"
#include "TabBar.hxx"
-#include "sfx2/sidebar/Theme.hxx"
-#include "sfx2/sidebar/SidebarChildWindow.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Theme.hxx>
+#include <sfx2/sidebar/SidebarChildWindow.hxx>
+#include <sfx2/sidebar/Tools.hxx>
#include "SidebarDockingWindow.hxx"
#include "Context.hxx"
#include <sfx2/sfxresid.hxx>
-#include "sfx2/sfxsids.hrc"
-#include "sfx2/titledockwin.hxx"
+#include <sfx2/sfxsids.hrc>
+#include <sfx2/titledockwin.hxx>
#include "sfxlocal.hrc"
#include <vcl/floatwin.hxx>
#include <vcl/fixed.hxx>
diff --git a/sfx2/source/sidebar/SidebarDockingWindow.cxx b/sfx2/source/sidebar/SidebarDockingWindow.cxx
index 402993441151..9a87d6791082 100644
--- a/sfx2/source/sidebar/SidebarDockingWindow.cxx
+++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx
@@ -17,11 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "SidebarDockingWindow.hxx"
-#include "sfx2/sidebar/SidebarChildWindow.hxx"
+#include <sfx2/sidebar/SidebarChildWindow.hxx>
#include "SidebarController.hxx"
-#include "sfx2/bindings.hxx"
-#include "sfx2/dispatch.hxx"
+#include <sfx2/bindings.hxx>
+#include <sfx2/dispatch.hxx>
#include <tools/link.hxx>
using namespace css;
diff --git a/sfx2/source/sidebar/SidebarDockingWindow.hxx b/sfx2/source/sidebar/SidebarDockingWindow.hxx
index 07857f1cc067..ffd47e8f5ca5 100644
--- a/sfx2/source/sidebar/SidebarDockingWindow.hxx
+++ b/sfx2/source/sidebar/SidebarDockingWindow.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_SIDEBARDOCKINGWINDOW_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_SIDEBARDOCKINGWINDOW_HXX
-#include "sfx2/dockwin.hxx"
-#include "sfx2/dockwin.hxx"
+#include <sfx2/dockwin.hxx>
+#include <sfx2/dockwin.hxx>
#include <rtl/ref.hxx>
diff --git a/sfx2/source/sidebar/SidebarPanel.cxx b/sfx2/source/sidebar/SidebarPanel.cxx
index ef9958c22bf6..af2f34cfb12b 100644
--- a/sfx2/source/sidebar/SidebarPanel.cxx
+++ b/sfx2/source/sidebar/SidebarPanel.cxx
@@ -21,7 +21,7 @@
#include "SidebarPanel.hxx"
#include "Panel.hxx"
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Theme.hxx>
#include <vos/mutex.hxx>
#include <vcl/svapp.hxx>
diff --git a/sfx2/source/sidebar/SidebarPanelBase.cxx b/sfx2/source/sidebar/SidebarPanelBase.cxx
index c1b0e39d59cf..37d2f6e4ce5f 100644
--- a/sfx2/source/sidebar/SidebarPanelBase.cxx
+++ b/sfx2/source/sidebar/SidebarPanelBase.cxx
@@ -16,11 +16,11 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sfx2/sidebar/SidebarPanelBase.hxx"
-#include "sfx2/sidebar/Theme.hxx"
-#include "sfx2/sidebar/ILayoutableWindow.hxx"
-#include "sfx2/sidebar/IContextChangeReceiver.hxx"
-#include "sfx2/imagemgr.hxx"
+#include <sfx2/sidebar/SidebarPanelBase.hxx>
+#include <sfx2/sidebar/Theme.hxx>
+#include <sfx2/sidebar/ILayoutableWindow.hxx>
+#include <sfx2/sidebar/IContextChangeReceiver.hxx>
+#include <sfx2/imagemgr.hxx>
#include <vcl/ctrl.hxx>
#include <vcl/layout.hxx>
#include <comphelper/processfactory.hxx>
diff --git a/sfx2/source/sidebar/SidebarToolBox.cxx b/sfx2/source/sidebar/SidebarToolBox.cxx
index 2255e1532bc0..16f9af251861 100644
--- a/sfx2/source/sidebar/SidebarToolBox.cxx
+++ b/sfx2/source/sidebar/SidebarToolBox.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sfx2/sidebar/SidebarToolBox.hxx"
-#include "sfx2/sidebar/ControllerFactory.hxx"
-#include "sfx2/sidebar/Theme.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/SidebarToolBox.hxx>
+#include <sfx2/sidebar/ControllerFactory.hxx>
+#include <sfx2/sidebar/Theme.hxx>
+#include <sfx2/sidebar/Tools.hxx>
#include <vcl/builder.hxx>
#include <vcl/gradient.hxx>
diff --git a/sfx2/source/sidebar/TabBar.cxx b/sfx2/source/sidebar/TabBar.cxx
index 12a8b1ced330..30d0b95f18bd 100644
--- a/sfx2/source/sidebar/TabBar.cxx
+++ b/sfx2/source/sidebar/TabBar.cxx
@@ -22,8 +22,8 @@
#include <sfx2/sidebar/ControlFactory.hxx>
#include "DeckDescriptor.hxx"
#include "Paint.hxx"
-#include "sfx2/sidebar/Theme.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Theme.hxx>
+#include <sfx2/sidebar/Tools.hxx>
#include "FocusManager.hxx"
#include <vcl/gradient.hxx>
diff --git a/sfx2/source/sidebar/TabItem.cxx b/sfx2/source/sidebar/TabItem.cxx
index 038bca88bd88..772c5916cb25 100644
--- a/sfx2/source/sidebar/TabItem.cxx
+++ b/sfx2/source/sidebar/TabItem.cxx
@@ -21,9 +21,9 @@
#include "DrawHelper.hxx"
#include "Paint.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Theme.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
diff --git a/sfx2/source/sidebar/TabItem.hxx b/sfx2/source/sidebar/TabItem.hxx
index ef009dbc39ae..ae1755568873 100644
--- a/sfx2/source/sidebar/TabItem.hxx
+++ b/sfx2/source/sidebar/TabItem.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_TABITEM_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_TABITEM_HXX
-#include "vcl/button.hxx"
+#include <vcl/button.hxx>
#include "DeckDescriptor.hxx"
diff --git a/sfx2/source/sidebar/Theme.cxx b/sfx2/source/sidebar/Theme.cxx
index bd191bbf4db9..36e58bb07006 100644
--- a/sfx2/source/sidebar/Theme.cxx
+++ b/sfx2/source/sidebar/Theme.cxx
@@ -16,10 +16,10 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Theme.hxx>
#include "Paint.hxx"
#include "SidebarResource.hxx"
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
#include <sfx2/app.hxx>
#include <tools/svborder.hxx>
diff --git a/sfx2/source/sidebar/TitleBar.hxx b/sfx2/source/sidebar/TitleBar.hxx
index 9635c4b580f6..6442333197c6 100644
--- a/sfx2/source/sidebar/TitleBar.hxx
+++ b/sfx2/source/sidebar/TitleBar.hxx
@@ -22,7 +22,7 @@
#include "Paint.hxx"
#include <vcl/fixed.hxx>
-#include "sfx2/sidebar/SidebarToolBox.hxx"
+#include <sfx2/sidebar/SidebarToolBox.hxx>
namespace sfx2 { namespace sidebar {
diff --git a/sfx2/source/sidebar/ToolBox.hxx b/sfx2/source/sidebar/ToolBox.hxx
index 23f3246d5bc8..72e5850b3583 100644
--- a/sfx2/source/sidebar/ToolBox.hxx
+++ b/sfx2/source/sidebar/ToolBox.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_SFX2_SOURCE_SIDEBAR_TOOLBOX_HXX
#define INCLUDED_SFX2_SOURCE_SIDEBAR_TOOLBOX_HXX
-#include "vcl/toolbox.hxx"
+#include <vcl/toolbox.hxx>
namespace sfx2 { namespace sidebar {
diff --git a/sfx2/source/sidebar/Tools.cxx b/sfx2/source/sidebar/Tools.cxx
index e3556497c96f..b8849a5f5019 100644
--- a/sfx2/source/sidebar/Tools.cxx
+++ b/sfx2/source/sidebar/Tools.cxx
@@ -17,11 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sfx2/sidebar/Tools.hxx"
+#include <sfx2/sidebar/Tools.hxx>
-#include "sfx2/sidebar/Theme.hxx"
+#include <sfx2/sidebar/Theme.hxx>
-#include "sfx2/imagemgr.hxx"
+#include <sfx2/imagemgr.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/namedvaluecollection.hxx>
#include <vcl/gradient.hxx>