diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-21 14:21:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-21 14:21:40 +0200 |
commit | 569fbba46b41f1fe1b1e9d6a86f4d7849d537d53 (patch) | |
tree | a3716bd69f3bbbd28e0611281125caaa1b731f49 /svx/source | |
parent | c52e417505f1ab7193a17bf24348e5962436ea26 (diff) |
Avoid incomplete type in fn sig to keep ubsan's RTTI-based checks happy
Change-Id: I52fa4656248dc67d85a81271c0dcef127d5869c5
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/unodraw/UnoGraphicExporter.cxx | 1 | ||||
-rw-r--r-- | svx/source/unogallery/unogalthemeprovider.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx index 71a2f82f02b0..87a1ce69d312 100644 --- a/svx/source/unodraw/UnoGraphicExporter.cxx +++ b/svx/source/unodraw/UnoGraphicExporter.cxx @@ -32,6 +32,7 @@ #include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/task/XInteractionContinuation.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <comphelper/interaction.hxx> #include <framework/interaction.hxx> diff --git a/svx/source/unogallery/unogalthemeprovider.cxx b/svx/source/unogallery/unogalthemeprovider.cxx index 3ccebbb2de73..dc17c12ea370 100644 --- a/svx/source/unogallery/unogalthemeprovider.cxx +++ b/svx/source/unogallery/unogalthemeprovider.cxx @@ -29,6 +29,7 @@ #include <cppuhelper/supportsservice.hxx> #include <com/sun/star/gallery/XGalleryTheme.hpp> #include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> using namespace ::com::sun::star; |