summaryrefslogtreecommitdiff
path: root/oox/source/export/ColorPropertySet.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-22 17:06:40 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-23 06:06:04 +0000
commit7f4e0d6aa29da640408cf4cc84b2fc1a0c11f8ba (patch)
tree7d078f47d4d7b72c627bae7e7192cf7316b5ebeb /oox/source/export/ColorPropertySet.hxx
parent9beb2bedc0f65b90cd35f7fa6c9b53ee6729a0c4 (diff)
oox: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I8a82df7ea24874d8e246dc983418d872f1943c8e Reviewed-on: https://gerrit.libreoffice.org/17919 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'oox/source/export/ColorPropertySet.hxx')
-rw-r--r--oox/source/export/ColorPropertySet.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/export/ColorPropertySet.hxx b/oox/source/export/ColorPropertySet.hxx
index 0463163133d9..522a0e045511 100644
--- a/oox/source/export/ColorPropertySet.hxx
+++ b/oox/source/export/ColorPropertySet.hxx
@@ -22,7 +22,7 @@
// FIXME? this file is identical to xmloff/source/chart/ColorPropertySet.hxx
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XPropertyState.hpp>
@@ -32,7 +32,7 @@ namespace oox
namespace drawingml
{
-class ColorPropertySet : public ::cppu::WeakImplHelper2<
+class ColorPropertySet : public ::cppu::WeakImplHelper<
::com::sun::star::beans::XPropertySet,
::com::sun::star::beans::XPropertyState >
{