summaryrefslogtreecommitdiff
path: root/filter/source/t602
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-08 10:53:34 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-11 07:06:51 +0000
commit678bb5135bf99a295c38060aa003e81a8c3b435a (patch)
tree678f5221dc2cc1bf29c7e11e917139c6566679c6 /filter/source/t602
parent0b0fb87fbac36ef9fbf3dfeac0f1372617f4b3e4 (diff)
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, for filter. Change-Id: I30dcd7cfb3e484034f6cceceb1ff7cd9d3f4b7a6 Reviewed-on: https://gerrit.libreoffice.org/17585 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'filter/source/t602')
-rw-r--r--filter/source/t602/t602filter.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/filter/source/t602/t602filter.hxx b/filter/source/t602/t602filter.hxx
index 307d92f8b278..4a4ca759abcb 100644
--- a/filter/source/t602/t602filter.hxx
+++ b/filter/source/t602/t602filter.hxx
@@ -30,8 +30,7 @@
#include <com/sun/star/lang/XLocalizable.hpp>
#include <com/sun/star/beans/XPropertyAccess.hpp>
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
-#include <cppuhelper/implbase5.hxx>
-#include <cppuhelper/implbase4.hxx>
+#include <cppuhelper/implbase.hxx>
#include <xmloff/attrlist.hxx>
#include <tools/resmgr.hxx>
@@ -90,7 +89,7 @@ struct inistruct
};
};
-class T602ImportFilterDialog : public cppu::WeakImplHelper4 <
+class T602ImportFilterDialog : public cppu::WeakImplHelper <
com::sun::star::ui::dialogs::XExecutableDialog,
com::sun::star::lang::XLocalizable,
com::sun::star::lang::XServiceInfo,
@@ -144,7 +143,7 @@ public:
};
-class T602ImportFilter : public cppu::WeakImplHelper5 <
+class T602ImportFilter : public cppu::WeakImplHelper <
com::sun::star::document::XFilter,
com::sun::star::document::XImporter,
com::sun::star::document::XExtendedFilterDetection,