diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-07 18:40:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-07 18:40:50 +0200 |
commit | 5b9c8241ea3a536cd0652bddbca110d86e09dcf9 (patch) | |
tree | 55430464ad61a9123011c844859a0eb3d9716866 /svtools | |
parent | e80c3152fdd343829af9e196aa6c72aaf9c7597f (diff) |
Avoid incomplete type in fn sig to keep ubsan's RTTI-based checks happy
Change-Id: I11db6f87f3b8b32578c0c83d3df7b11d3533b5ef
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/graphic/provider.cxx | 1 | ||||
-rw-r--r-- | svtools/source/graphic/renderer.cxx | 1 | ||||
-rw-r--r-- | svtools/source/hatchwindow/hatchwindowfactory.cxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/svtools/source/graphic/provider.cxx b/svtools/source/graphic/provider.cxx index 1cf6620820d2..c21577be0c7f 100644 --- a/svtools/source/graphic/provider.cxx +++ b/svtools/source/graphic/provider.cxx @@ -34,6 +34,7 @@ #include <vcl/settings.hxx> #include <com/sun/star/io/XStream.hpp> #include <com/sun/star/text/GraphicCrop.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <comphelper/servicehelper.hxx> #include <cppuhelper/supportsservice.hxx> diff --git a/svtools/source/graphic/renderer.cxx b/svtools/source/graphic/renderer.cxx index e262f3189f43..297166fb858c 100644 --- a/svtools/source/graphic/renderer.cxx +++ b/svtools/source/graphic/renderer.cxx @@ -21,6 +21,7 @@ #include <com/sun/star/beans/PropertyState.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/awt/Rectangle.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <osl/mutex.hxx> #include <vcl/svapp.hxx> #include <toolkit/helper/vclunohelper.hxx> diff --git a/svtools/source/hatchwindow/hatchwindowfactory.cxx b/svtools/source/hatchwindow/hatchwindowfactory.cxx index 51dbdfe99dbe..d31c989cefa0 100644 --- a/svtools/source/hatchwindow/hatchwindowfactory.cxx +++ b/svtools/source/hatchwindow/hatchwindowfactory.cxx @@ -19,6 +19,7 @@ #include <com/sun/star/embed/XHatchWindowFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <cppuhelper/implbase2.hxx> #include <cppuhelper/supportsservice.hxx> #include <rtl/ref.hxx> |