summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-11-07 16:12:31 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-11-07 19:20:17 +0100
commita0e0575dcf4fede5c6e20636c63042d8c62ecf77 (patch)
treeaf00fa7be111a91cc2ff61d8f6d9fb0d945a3231 /sd
parentefd2510e225232ac35707a3ed55b83be9fa046af (diff)
forward decls go after #include
Change-Id: I54c33508639044092356eed5144720261b4f65db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124816 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx4
-rw-r--r--sd/source/ui/slidesorter/inc/model/SlideSorterModel.hxx7
2 files changed, 3 insertions, 8 deletions
diff --git a/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx b/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx
index 95acc9a184d9..98b0bcb53728 100644
--- a/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx
+++ b/sd/source/ui/slidesorter/cache/SlsBitmapCache.hxx
@@ -19,12 +19,12 @@
#pragma once
-class SdrPage;
-
#include <vcl/bitmapex.hxx>
#include <osl/mutex.hxx>
#include <memory>
+class SdrPage;
+
namespace sd::slidesorter::cache
{
class CacheCompactor;
diff --git a/sd/source/ui/slidesorter/inc/model/SlideSorterModel.hxx b/sd/source/ui/slidesorter/inc/model/SlideSorterModel.hxx
index 2338116549a8..90223a1bc87e 100644
--- a/sd/source/ui/slidesorter/inc/model/SlideSorterModel.hxx
+++ b/sd/source/ui/slidesorter/inc/model/SlideSorterModel.hxx
@@ -19,25 +19,20 @@
#pragma once
-class SdDrawDocument;
-
#include <model/SlsSharedPageDescriptor.hxx>
-
#include <pres.hxx>
#include <osl/mutex.hxx>
#include <vcl/region.hxx>
#include <com/sun/star/uno/Reference.hxx>
-
#include <vector>
+class SdDrawDocument;
class SdrPage;
class SdPage;
-
namespace sd::slidesorter
{
class SlideSorter;
}
-
namespace com::sun::star::container
{
class XIndexAccess;