diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-08 08:40:06 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-08 08:40:06 +0100 |
commit | fed3783e77e00635e50622e7229b06c9e25451f1 (patch) | |
tree | 15a0a2bb2e79cd0e8a0a4f864d3a6d7533bd20f2 /extensions | |
parent | 653e181fb831a04c2845d99f79f72454a88bb948 (diff) |
Add missing #includes
...like 6dce9c6757823b9e89863716ae70ff4e8ddd4e60, for Windows-only code
Change-Id: I35f37aae2e6f55ff8ed82afc710a9b59a43b028c
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/oleobjw.cxx | 1 | ||||
-rw-r--r-- | extensions/source/ole/servprov.cxx | 1 | ||||
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 2 | ||||
-rw-r--r-- | extensions/source/scanner/scanwin.cxx | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx index 851b8055f2c7..fa5bfefbf2d6 100644 --- a/extensions/source/ole/oleobjw.cxx +++ b/extensions/source/ole/oleobjw.cxx @@ -26,6 +26,7 @@ #include "osl/thread.h" #include <memory> +#include <com/sun/star/script/CannotConvertException.hpp> #include <com/sun/star/script/FailReason.hpp> #include <com/sun/star/beans/XMaterialHolder.hpp> #include <com/sun/star/script/XTypeConverter.hpp> diff --git a/extensions/source/ole/servprov.cxx b/extensions/source/ole/servprov.cxx index 73bc1336153a..30fea73db39e 100644 --- a/extensions/source/ole/servprov.cxx +++ b/extensions/source/ole/servprov.cxx @@ -29,6 +29,7 @@ #include "servprov.hxx" #include "unoobjw.hxx" #include "oleobjw.hxx" +#include <com/sun/star/script/CannotConvertException.hpp> #include <cppuhelper/queryinterface.hxx> #include <cppuhelper/supportsservice.hxx> #include <o3tl/any.hxx> diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 474b35ab6dd5..60cb7d4cb572 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -29,6 +29,8 @@ #include <rtl/ustring.hxx> #include <com/sun/star/beans/MethodConcept.hpp> #include <com/sun/star/beans/PropertyConcept.hpp> +#include <com/sun/star/lang/NoSuchMethodException.hpp> +#include <com/sun/star/script/CannotConvertException.hpp> #include <com/sun/star/script/FailReason.hpp> #include <com/sun/star/reflection/theCoreReflection.hpp> #include <com/sun/star/reflection/ParamInfo.hpp> diff --git a/extensions/source/scanner/scanwin.cxx b/extensions/source/scanner/scanwin.cxx index 6075d0ba79d5..579cb48bd390 100644 --- a/extensions/source/scanner/scanwin.cxx +++ b/extensions/source/scanner/scanwin.cxx @@ -18,6 +18,7 @@ */ #include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/util/CloseVetoException.hpp> #include <com/sun/star/util/XCloseable.hpp> #include <com/sun/star/util/XCloseBroadcaster.hpp> #include <com/sun/star/util/XCloseListener.hpp> |