diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-08-07 21:46:15 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2016-08-23 05:41:17 +0000 |
commit | 290b25af222124051cc611061de9caf8f1efe966 (patch) | |
tree | ec8fa20d4ad412e164f5edc6da696a5579e96d58 /sd | |
parent | 3e6052ce1b9a24f82358e574de32919fa2b6499f (diff) |
tdf#95416 remove ../ style include
Change-Id: Ie3228d4cdaabfcc6034ee3ac6dd2295a33021e71
Reviewed-on: https://gerrit.libreoffice.org/27942
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/inc/createunocustomshow.hxx | 3 | ||||
-rw-r--r-- | sd/inc/createunopageimpl.hxx | 5 | ||||
-rw-r--r-- | sd/source/core/sdpage.cxx | 3 |
3 files changed, 8 insertions, 3 deletions
diff --git a/sd/inc/createunocustomshow.hxx b/sd/inc/createunocustomshow.hxx index 501f863df064..a10195946c98 100644 --- a/sd/inc/createunocustomshow.hxx +++ b/sd/inc/createunocustomshow.hxx @@ -20,8 +20,9 @@ #ifndef INCLUDED_SD_INC_CREATEUNOCUSTOMSHOW_HXX #define INCLUDED_SD_INC_CREATEUNOCUSTOMSHOW_HXX -#include <sal/config.h> +#include <com/sun/star/uno/Reference.hxx> +namespace com { namespace sun { namespace star { namespace uno { class XInterface; } } } } class SdCustomShow; css::uno::Reference<css::uno::XInterface> createUnoCustomShow( diff --git a/sd/inc/createunopageimpl.hxx b/sd/inc/createunopageimpl.hxx index 75702bc24316..222c0a861fbb 100644 --- a/sd/inc/createunopageimpl.hxx +++ b/sd/inc/createunopageimpl.hxx @@ -20,7 +20,10 @@ #ifndef INCLUDED_SD_INC_CREATEUNOPAGEIMPL_HXX #define INCLUDED_SD_INC_CREATEUNOPAGEIMPL_HXX -#include <sal/config.h> +#include <com/sun/star/uno/Reference.hxx> + +namespace com { namespace sun { namespace star { namespace uno { class XInterface; } } } } +class SdPage; css::uno::Reference< css::uno::XInterface > createUnoPageImpl( SdPage* pPage ); diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx index 34dd2efee61b..d794cff6e101 100644 --- a/sd/source/core/sdpage.cxx +++ b/sd/source/core/sdpage.cxx @@ -20,6 +20,7 @@ #include <algorithm> #include <comphelper/classids.hxx> +#include <comphelper/embeddedobjectcontainer.hxx> #include <vcl/svapp.hxx> #include <editeng/outliner.hxx> @@ -54,11 +55,11 @@ #include <rtl/ustring.hxx> #include <basegfx/tools/tools.hxx> -#include "../ui/inc/DrawDocShell.hxx" #include "Outliner.hxx" #include "app.hrc" #include "createunopageimpl.hxx" #include "drawdoc.hxx" +#include "sdmod.hxx" #include "sdpage.hxx" #include "pglink.hxx" #include "sdresid.hxx" |