diff options
-rw-r--r-- | xmloff/source/core/PropertySetMerger.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xmloff/source/core/PropertySetMerger.cxx b/xmloff/source/core/PropertySetMerger.cxx index 7663aef638d3..65a936bb3d80 100644 --- a/xmloff/source/core/PropertySetMerger.cxx +++ b/xmloff/source/core/PropertySetMerger.cxx @@ -19,18 +19,17 @@ #include <com/sun/star/beans/XPropertyState.hpp> #include <PropertySetMerger.hxx> +#include <comphelper/sequence.hxx> +#include <cppuhelper/implbase.hxx> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::lang; -#include <comphelper/sequence.hxx> -#include <cppuhelper/implbase3.hxx> - namespace { -class PropertySetMergerImpl : public ::cppu::WeakAggImplHelper3< XPropertySet, XPropertyState, XPropertySetInfo > +class PropertySetMergerImpl : public ::cppu::WeakImplHelper< XPropertySet, XPropertyState, XPropertySetInfo > { private: Reference< XPropertySet > mxPropSet1; |