summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-11 11:59:05 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-11 13:15:04 +0300
commit7d879c775c3212193c4703ae57940630dad8800e (patch)
tree77132ac29d3444b18409ecb4dd24fc7b84e6dca1 /sfx2
parentc7f7c954e0817de664344a620938a4e99ac7549c (diff)
SCNR: #include cleanup
Obviously just a question of personal taste, and we have no consensus here, and some say that <sal/config.h> should be included before any other LO headers, for instance. Oh well, if this commit breaks on some platform, please revert;) Change-Id: Ie02ec4e68b19961165608220f07808641d2e4fda
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/control/dispatch.cxx66
1 files changed, 33 insertions, 33 deletions
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx
index 27f6288bb2b4..7ebb9402a22f 100644
--- a/sfx2/source/control/dispatch.cxx
+++ b/sfx2/source/control/dispatch.cxx
@@ -19,50 +19,50 @@
#include <config_features.h>
+#include <algorithm>
+#include <deque>
+#include <vector>
+
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/frame/XDispatchRecorderSupplier.hpp>
#include <com/sun/star/frame/XLayoutManager.hpp>
-#include <svl/itempool.hxx>
-#include <svl/itemiter.hxx>
-#include <svl/whiter.hxx>
-#include <svl/intitem.hxx>
-#include <svl/eitem.hxx>
-#include <svl/undo.hxx>
-#include <vcl/wrkwin.hxx>
-#include <stdio.h>
-#include <stdarg.h>
-#include <stdlib.h> // due to bsearch
-#include <algorithm>
-#include <svtools/helpopt.hxx>
-
-// due to nAutoPageID
-#include "appdata.hxx"
-#include "sfx2/sfxhelp.hxx"
+#include <rtl/strbuf.hxx>
+#include <sfx2/app.hxx>
+#include <sfx2/bindings.hxx>
+#include <sfx2/childwin.hxx>
#include <sfx2/dispatch.hxx>
+#include <sfx2/docfac.hxx>
+#include <sfx2/docfile.hxx>
+#include <sfx2/hintpost.hxx>
+#include <sfx2/ipclient.hxx>
+#include <sfx2/mnumgr.hxx>
+#include <sfx2/module.hxx>
#include <sfx2/msg.hxx>
+#include <sfx2/msgpool.hxx>
#include <sfx2/objface.hxx>
-#include <sfx2/bindings.hxx>
#include <sfx2/request.hxx>
-#include <sfx2/app.hxx>
-#include <sfx2/hintpost.hxx>
-#include "slotserv.hxx"
-#include <sfx2/ipclient.hxx>
-#include "sfxtypes.hxx"
+#include <sfx2/sfxhelp.hxx>
+#include <sfx2/sfxuno.hxx>
#include <sfx2/viewfrm.hxx>
#include <sfx2/viewsh.hxx>
-#include <sfx2/childwin.hxx>
-#include <sfx2/docfac.hxx>
-#include <sfx2/msgpool.hxx>
-#include <sfx2/module.hxx>
-#include <sfx2/sfxuno.hxx>
-#include <sfx2/docfile.hxx>
-#include <sfx2/mnumgr.hxx>
-#include "workwin.hxx"
-#include <rtl/strbuf.hxx>
+#include <svl/eitem.hxx>
+#include <svl/intitem.hxx>
+#include <svl/itemiter.hxx>
+#include <svl/itempool.hxx>
+#include <svl/undo.hxx>
+#include <svl/whiter.hxx>
+#include <svtools/helpopt.hxx>
+#include <vcl/wrkwin.hxx>
-#include <deque>
-#include <vector>
+#include <appdata.hxx>
+#include <sfxtypes.hxx>
+#include <slotserv.hxx>
+#include <workwin.hxx>
DBG_NAME(SfxDispatcherFlush)
DBG_NAME(SfxDispatcherFillState)