diff options
-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" |