diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-06-27 23:28:10 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2017-06-28 05:01:48 +0200 |
commit | d9ae08845df86c1945e73e9506f92d13221ac98c (patch) | |
tree | 4840ac08e645f9bb50f6b9c6123e9f923ff1856a | |
parent | 49922897d68835ae4e5c850b3c55107157fe7548 (diff) |
sd: Kill forward declaration of non-existent RequestData
Change-Id: I0feef07e46b0056408d75abed631646e0520e4c1
Reviewed-on: https://gerrit.libreoffice.org/39306
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
-rw-r--r-- | sd/inc/drawdoc.hxx | 1 | ||||
-rw-r--r-- | sd/source/ui/inc/View.hxx | 1 | ||||
-rw-r--r-- | sd/source/ui/inc/fuinsfil.hxx | 1 | ||||
-rw-r--r-- | sd/source/ui/inc/futext.hxx | 1 | ||||
-rw-r--r-- | sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx | 4 |
5 files changed, 1 insertions, 7 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index 2a72855698fd..a6f9845269c5 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -74,7 +74,6 @@ class Point; namespace vcl { class Window; } class SdTransferable; struct SpellCallbackInfo; -struct StyleRequestData; class SdDrawDocument; class SdCustomShow; class SdCustomShowList; diff --git a/sd/source/ui/inc/View.hxx b/sd/source/ui/inc/View.hxx index d1fda4c1d417..f98f263a4438 100644 --- a/sd/source/ui/inc/View.hxx +++ b/sd/source/ui/inc/View.hxx @@ -44,7 +44,6 @@ class Point; class Graphic; class SdrOutliner; class TransferableDataHelper; -struct StyleRequestData; class Outliner; namespace sd { diff --git a/sd/source/ui/inc/fuinsfil.hxx b/sd/source/ui/inc/fuinsfil.hxx index a15d612b5c1d..6a4fa1930e2e 100644 --- a/sd/source/ui/inc/fuinsfil.hxx +++ b/sd/source/ui/inc/fuinsfil.hxx @@ -24,7 +24,6 @@ #include <vector> class SfxMedium; -struct StyleRequestData; namespace sd { diff --git a/sd/source/ui/inc/futext.hxx b/sd/source/ui/inc/futext.hxx index 281af763e1ec..f9d9fb56df6a 100644 --- a/sd/source/ui/inc/futext.hxx +++ b/sd/source/ui/inc/futext.hxx @@ -24,7 +24,6 @@ #include "fuconstr.hxx" #include <svx/svdotext.hxx> -struct StyleRequestData; class SdrTextObj; class FontList; class OutlinerView; diff --git a/sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx b/sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx index 7f3946be4954..e4f760ca6c41 100644 --- a/sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx +++ b/sd/source/ui/slidesorter/cache/SlsRequestQueue.hxx @@ -30,9 +30,7 @@ namespace sd { namespace slidesorter { namespace cache { -class RequestData; - -/** The request queue stores requests that are described by the RequestData +/** The request queue stores requests that are described by the Request sorted according to priority class and then priority. */ class RequestQueue : public sdr::PageUser |