diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-17 16:15:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-17 17:32:58 +0100 |
commit | 8233226fe4614d5cebe474a0d1b026084e023e4c (patch) | |
tree | 3e3ae991aa96ea8b289bd925ad4ecb9e766f4fdd /oox | |
parent | b9bcc9c5c10841dcdfa9ff5814344ce667678df3 (diff) |
No need for implbase1.hxx to include XComponentContext.hpp
...which it did unlike all the other implbaseN.hxx. Required lots of downstream clean-up,
of course.
Change-Id: Ib720e7a0a43410dcd7e6338b84a3973dfbb20866
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/filterbase.cxx | 1 | ||||
-rw-r--r-- | oox/source/crypto/DocumentDecryption.cxx | 1 | ||||
-rw-r--r-- | oox/source/ppt/pptimport.cxx | 3 | ||||
-rw-r--r-- | oox/source/ppt/timenode.cxx | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/oox/source/core/filterbase.cxx b/oox/source/core/filterbase.cxx index ce6d3fd14168..8d8ffc9b71ff 100644 --- a/oox/source/core/filterbase.cxx +++ b/oox/source/core/filterbase.cxx @@ -24,6 +24,7 @@ #include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/task/XInteractionHandler.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/drawing/XShape.hpp> #include <comphelper/docpasswordhelper.hxx> #include <unotools/mediadescriptor.hxx> diff --git a/oox/source/crypto/DocumentDecryption.cxx b/oox/source/crypto/DocumentDecryption.cxx index 0d1c72933a35..0e9013997d6e 100644 --- a/oox/source/crypto/DocumentDecryption.cxx +++ b/oox/source/crypto/DocumentDecryption.cxx @@ -15,6 +15,7 @@ #include <cppuhelper/implbase1.hxx> #include <com/sun/star/io/XSeekable.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/xml/sax/XFastParser.hpp> #include <com/sun/star/xml/sax/XFastTokenHandler.hpp> #include <com/sun/star/xml/sax/FastToken.hpp> diff --git a/oox/source/ppt/pptimport.cxx b/oox/source/ppt/pptimport.cxx index 285ac2a064bc..f97423086d00 100644 --- a/oox/source/ppt/pptimport.cxx +++ b/oox/source/ppt/pptimport.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <com/sun/star/uno/XComponentContext.hpp> #include "oox/ppt/pptimport.hxx" #include "oox/drawingml/chart/chartconverter.hxx" #include "oox/dump/pptxdumper.hxx" diff --git a/oox/source/ppt/timenode.cxx b/oox/source/ppt/timenode.cxx index ea483c1137f3..c96d794a1fde 100644 --- a/oox/source/ppt/timenode.cxx +++ b/oox/source/ppt/timenode.cxx @@ -37,6 +37,7 @@ #include <com/sun/star/animations/Event.hpp> #include <com/sun/star/animations/EventTrigger.hpp> #include <com/sun/star/presentation/EffectNodeType.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include "oox/helper/helper.hxx" #include "oox/core/xmlfilterbase.hxx" |