summaryrefslogtreecommitdiff
path: root/include/cppuhelper/propertysetmixin.hxx
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2018-08-18 18:24:16 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-09-10 09:58:12 +0200
commitcc7280efdbfefd96eb96b63dc8bd171d39704388 (patch)
tree76b0d516d033c5006ddb122f2d847fce20c9d93c /include/cppuhelper/propertysetmixin.hxx
parent433fce6571d4b9121374047324a7d2d2722ac3e4 (diff)
tdf#42949 Fix IWYU warnings in include/cppuhelper/*
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: Ib420e9216b8313f5ed7634ec375e39ceb741fd45 Reviewed-on: https://gerrit.libreoffice.org/59297 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include/cppuhelper/propertysetmixin.hxx')
-rw-r--r--include/cppuhelper/propertysetmixin.hxx13
1 files changed, 1 insertions, 12 deletions
diff --git a/include/cppuhelper/propertysetmixin.hxx b/include/cppuhelper/propertysetmixin.hxx
index 287ef7dd1fc7..56887d9b7cf1 100644
--- a/include/cppuhelper/propertysetmixin.hxx
+++ b/include/cppuhelper/propertysetmixin.hxx
@@ -22,17 +22,10 @@
#include "sal/config.h"
-#include <exception>
-
-#include "com/sun/star/beans/PropertyVetoException.hpp"
-#include "com/sun/star/beans/UnknownPropertyException.hpp"
#include "com/sun/star/beans/XFastPropertySet.hpp"
#include "com/sun/star/beans/XPropertyAccess.hpp"
#include "com/sun/star/beans/XPropertySet.hpp"
-#include "com/sun/star/lang/IllegalArgumentException.hpp"
-#include "com/sun/star/lang/WrappedTargetException.hpp"
-#include "com/sun/star/uno/Reference.hxx"
-#include "com/sun/star/uno/RuntimeException.hpp"
+#include "com/sun/star/uno/Reference.h"
#include "com/sun/star/uno/Sequence.hxx"
#include "sal/types.h"
#include "cppuhelper/cppuhelperdllapi.h"
@@ -45,17 +38,13 @@ namespace com { namespace sun { namespace star {
struct PropertyValue;
}
namespace uno {
- class Any;
class Type;
class XComponentContext;
}
} } }
-namespace rtl { class OUString; }
namespace cppu {
-template< typename T > class PropertySetMixin;
-
/**
@short A helper base class for <code>cppu::PropertySetMixin</code>.