summaryrefslogtreecommitdiff
path: root/vcl/source/window
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-23 22:28:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-23 22:45:47 +0200
commitca39dddb8b3c01ff1d8a4cf2961c1b61563397a1 (patch)
treee9f9103fe3045cd56e7a6fc1f19afba3d064bdce /vcl/source/window
parente279245767050c8ca9743b33ab395cb67dd9a63c (diff)
loplugin:includeform: vcl
Change-Id: Id7dea3917740aaf4db8dada5e2bea6e117d714ea
Diffstat (limited to 'vcl/source/window')
-rw-r--r--vcl/source/window/accessibility.cxx58
-rw-r--r--vcl/source/window/builder.cxx2
-rw-r--r--vcl/source/window/debug.cxx2
-rw-r--r--vcl/source/window/debugevent.cxx4
-rw-r--r--vcl/source/window/dlgctrl.cxx2
-rw-r--r--vcl/source/window/dndeventdispatcher.cxx4
-rw-r--r--vcl/source/window/dndlistenercontainer.cxx2
-rw-r--r--vcl/source/window/layout.cxx4
-rw-r--r--vcl/source/window/legacyaccessibility.cxx2
-rw-r--r--vcl/source/window/mouse.cxx4
-rw-r--r--vcl/source/window/printdlg.cxx22
-rw-r--r--vcl/source/window/status.cxx2
-rw-r--r--vcl/source/window/toolbox2.cxx2
-rw-r--r--vcl/source/window/window.cxx2
-rw-r--r--vcl/source/window/winproc.cxx2
15 files changed, 57 insertions, 57 deletions
diff --git a/vcl/source/window/accessibility.cxx b/vcl/source/window/accessibility.cxx
index 74561cda7dc2..3d81a1e82edc 100644
--- a/vcl/source/window/accessibility.cxx
+++ b/vcl/source/window/accessibility.cxx
@@ -21,10 +21,10 @@
#include <i18nlangtag/mslangid.hxx>
-#include "tools/time.hxx"
+#include <tools/time.hxx>
-#include "unotools/fontcfg.hxx"
-#include "unotools/confignode.hxx"
+#include <unotools/fontcfg.hxx>
+#include <unotools/confignode.hxx>
#include <vcl/layout.hxx>
#include <vcl/salgtype.hxx>
@@ -55,32 +55,32 @@
// declare system types in sysdata.hxx
#include <vcl/sysdata.hxx>
-#include "salframe.hxx"
-#include "salobj.hxx"
-#include "salinst.hxx"
-#include "salgdi.hxx"
-#include "svdata.hxx"
-#include "fontinstance.hxx"
-#include "window.h"
-#include "toolbox.h"
-#include "outdev.h"
-#include "PhysicalFontCollection.hxx"
-#include "brdwin.hxx"
-#include "helpwin.hxx"
-#include "sallayout.hxx"
-#include "dndlistenercontainer.hxx"
-#include "dndeventdispatcher.hxx"
-
-#include "com/sun/star/accessibility/XAccessible.hpp"
-#include "com/sun/star/accessibility/AccessibleRole.hpp"
-#include "com/sun/star/datatransfer/dnd/XDragSource.hpp"
-#include "com/sun/star/datatransfer/dnd/XDropTarget.hpp"
-#include "com/sun/star/datatransfer/clipboard/XClipboard.hpp"
-#include "com/sun/star/datatransfer/clipboard/SystemClipboard.hpp"
-#include "com/sun/star/lang/XInitialization.hpp"
-#include "com/sun/star/lang/XComponent.hpp"
-#include "com/sun/star/lang/XServiceName.hpp"
-#include "comphelper/processfactory.hxx"
+#include <salframe.hxx>
+#include <salobj.hxx>
+#include <salinst.hxx>
+#include <salgdi.hxx>
+#include <svdata.hxx>
+#include <fontinstance.hxx>
+#include <window.h>
+#include <toolbox.h>
+#include <outdev.h>
+#include <PhysicalFontCollection.hxx>
+#include <brdwin.hxx>
+#include <helpwin.hxx>
+#include <sallayout.hxx>
+#include <dndlistenercontainer.hxx>
+#include <dndeventdispatcher.hxx>
+
+#include <com/sun/star/accessibility/XAccessible.hpp>
+#include <com/sun/star/accessibility/AccessibleRole.hpp>
+#include <com/sun/star/datatransfer/dnd/XDragSource.hpp>
+#include <com/sun/star/datatransfer/dnd/XDropTarget.hpp>
+#include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
+#include <com/sun/star/datatransfer/clipboard/SystemClipboard.hpp>
+#include <com/sun/star/lang/XInitialization.hpp>
+#include <com/sun/star/lang/XComponent.hpp>
+#include <com/sun/star/lang/XServiceName.hpp>
+#include <comphelper/processfactory.hxx>
#include <sal/macros.h>
#include <rtl/strbuf.hxx>
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 58e229f51624..e8ab874696c0 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -43,7 +43,7 @@
#include <window.h>
#include <xmlreader/xmlreader.hxx>
#include <desktop/crashreport.hxx>
-#include "strings.hrc"
+#include <strings.hrc>
#ifdef DISABLE_DYNLOADING
#include <dlfcn.h>
diff --git a/vcl/source/window/debug.cxx b/vcl/source/window/debug.cxx
index 960fe82400de..a81768b78eaf 100644
--- a/vcl/source/window/debug.cxx
+++ b/vcl/source/window/debug.cxx
@@ -20,7 +20,7 @@
#include <vcl/window.hxx>
#include <vcl/outdev.hxx>
-#include "window.h"
+#include <window.h>
#ifdef DBG_UTIL
const char* ImplDbgCheckWindow( const void* pObj )
diff --git a/vcl/source/window/debugevent.cxx b/vcl/source/window/debugevent.cxx
index da2b68917f5c..ba8cc2f1a8c2 100644
--- a/vcl/source/window/debugevent.cxx
+++ b/vcl/source/window/debugevent.cxx
@@ -16,8 +16,8 @@
#include <vcl/debugevent.hxx>
#include <vcl/wrkwin.hxx>
#include <vcl/menu.hxx>
-#include "window.h"
-#include "salwtype.hxx"
+#include <window.h>
+#include <salwtype.hxx>
#if OSL_DEBUG_LEVEL > 0
diff --git a/vcl/source/window/dlgctrl.cxx b/vcl/source/window/dlgctrl.cxx
index 6b2ae73ba503..9e7e21c0b42b 100644
--- a/vcl/source/window/dlgctrl.cxx
+++ b/vcl/source/window/dlgctrl.cxx
@@ -20,7 +20,7 @@
#include <svdata.hxx>
-#include <dlgctrl.hxx>
+#include "dlgctrl.hxx"
#include <vcl/event.hxx>
#include <vcl/fixed.hxx>
#include <vcl/layout.hxx>
diff --git a/vcl/source/window/dndeventdispatcher.cxx b/vcl/source/window/dndeventdispatcher.cxx
index 5fce2982d5f9..a5f6cdf515a2 100644
--- a/vcl/source/window/dndeventdispatcher.cxx
+++ b/vcl/source/window/dndeventdispatcher.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dndeventdispatcher.hxx"
-#include "dndlistenercontainer.hxx"
+#include <dndeventdispatcher.hxx>
+#include <dndlistenercontainer.hxx>
#include <window.h>
#include <svdata.hxx>
diff --git a/vcl/source/window/dndlistenercontainer.cxx b/vcl/source/window/dndlistenercontainer.cxx
index fd0244c6e014..bc0934a1ed1a 100644
--- a/vcl/source/window/dndlistenercontainer.cxx
+++ b/vcl/source/window/dndlistenercontainer.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "dndlistenercontainer.hxx"
+#include <dndlistenercontainer.hxx>
using namespace ::cppu;
using namespace ::com::sun::star::uno;
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx
index 0d29a2fa0dc1..63728f65e0b2 100644
--- a/vcl/source/window/layout.cxx
+++ b/vcl/source/window/layout.cxx
@@ -15,12 +15,12 @@
#include <vcl/msgbox.hxx>
#include <vcl/svapp.hxx>
#include <vcl/settings.hxx>
-#include "window.h"
+#include <window.h>
#include <boost/multi_array.hpp>
#include <officecfg/Office/Common.hxx>
#include <vcl/abstdlg.hxx>
-#include "svdata.hxx"
+#include <svdata.hxx>
#include <strings.hrc>
VclContainer::VclContainer(vcl::Window *pParent, WinBits nStyle)
diff --git a/vcl/source/window/legacyaccessibility.cxx b/vcl/source/window/legacyaccessibility.cxx
index bcf4bc2c0be6..ece1de64d6dd 100644
--- a/vcl/source/window/legacyaccessibility.cxx
+++ b/vcl/source/window/legacyaccessibility.cxx
@@ -20,7 +20,7 @@
#include <svdata.hxx>
-#include <dlgctrl.hxx>
+#include "dlgctrl.hxx"
#include <vcl/event.hxx>
#include <vcl/fixed.hxx>
#include <vcl/layout.hxx>
diff --git a/vcl/source/window/mouse.cxx b/vcl/source/window/mouse.cxx
index 4f1fe06782b6..311018a52366 100644
--- a/vcl/source/window/mouse.cxx
+++ b/vcl/source/window/mouse.cxx
@@ -38,8 +38,8 @@
#include <salgdi.hxx>
#include <salframe.hxx>
-#include "dndlistenercontainer.hxx"
-#include "dndeventdispatcher.hxx"
+#include <dndlistenercontainer.hxx>
+#include <dndeventdispatcher.hxx>
#include <com/sun/star/datatransfer/dnd/XDragSource.hpp>
#include <com/sun/star/datatransfer/dnd/XDropTarget.hpp>
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index e56a70c8a2c8..39219b35e8e0 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "printdlg.hxx"
-#include "svdata.hxx"
-#include "strings.hrc"
-#include "bitmaps.hlst"
+#include <printdlg.hxx>
+#include <svdata.hxx>
+#include <strings.hrc>
+#include <bitmaps.hlst>
#include <vcl/print.hxx>
#include <vcl/dialog.hxx>
@@ -36,16 +36,16 @@
#include <vcl/settings.hxx>
#include <vcl/builderfactory.hxx>
#include <vcl/lstbox.hxx>
-#include "jobset.h"
+#include <jobset.h>
-#include "unotools/localedatawrapper.hxx"
+#include <unotools/localedatawrapper.hxx>
-#include "rtl/strbuf.hxx"
+#include <rtl/strbuf.hxx>
-#include "com/sun/star/lang/XMultiServiceFactory.hpp"
-#include "com/sun/star/container/XNameAccess.hpp"
-#include "com/sun/star/beans/PropertyValue.hpp"
-#include "com/sun/star/awt/Size.hpp"
+#include <com/sun/star/lang/XMultiServiceFactory.hpp>
+#include <com/sun/star/container/XNameAccess.hpp>
+#include <com/sun/star/beans/PropertyValue.hpp>
+#include <com/sun/star/awt/Size.hpp>
using namespace vcl;
using namespace com::sun::star;
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx
index 3829a5aa99bf..e24a153896cb 100644
--- a/vcl/source/window/status.cxx
+++ b/vcl/source/window/status.cxx
@@ -32,7 +32,7 @@
#include <svdata.hxx>
#include <window.h>
-#include "sallayout.hxx"
+#include <sallayout.hxx>
#define STATUSBAR_OFFSET_X STATUSBAR_OFFSET
#define STATUSBAR_OFFSET_Y 2
diff --git a/vcl/source/window/toolbox2.cxx b/vcl/source/window/toolbox2.cxx
index bee4f41adada..c931c47c5553 100644
--- a/vcl/source/window/toolbox2.cxx
+++ b/vcl/source/window/toolbox2.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#include <comphelper/processfactory.hxx>
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 0baa83b10176..91e36464982a 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -56,7 +56,7 @@
#include <outdev.h>
#include <brdwin.hxx>
#include <helpwin.hxx>
-#include "dndlistenercontainer.hxx"
+#include <dndlistenercontainer.hxx>
#include <com/sun/star/awt/XDisplayConnection.hpp>
#include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx
index 071f71d0d508..3c56adc27733 100644
--- a/vcl/source/window/winproc.cxx
+++ b/vcl/source/window/winproc.cxx
@@ -48,7 +48,7 @@
#include <helpwin.hxx>
#include <brdwin.hxx>
#include <salgdi.hxx>
-#include "dndlistenercontainer.hxx"
+#include <dndlistenercontainer.hxx>
#include <com/sun/star/datatransfer/dnd/XDragSource.hpp>
#include <com/sun/star/awt/MouseEvent.hpp>