summaryrefslogtreecommitdiff
path: root/sc/inc/fielduno.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-28 09:42:29 +0900
committerMichael Stahl <mstahl@redhat.com>2015-09-03 16:14:41 +0000
commit1873563bb2d9743fe548ceaf2d1429280a27b956 (patch)
treecc1f851977966aeda4978a618b80bba01ca8dce2 /sc/inc/fielduno.hxx
parent88890c2a7522394f355a3f47a4dfb4608ac5a1cd (diff)
sc: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I2f55a6231e903b0ca198cee3a88023ad1db6c50c Reviewed-on: https://gerrit.libreoffice.org/18072 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc/inc/fielduno.hxx')
-rw-r--r--sc/inc/fielduno.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/sc/inc/fielduno.hxx b/sc/inc/fielduno.hxx
index bb117090748a..905e907953f5 100644
--- a/sc/inc/fielduno.hxx
+++ b/sc/inc/fielduno.hxx
@@ -36,8 +36,7 @@
#include <com/sun/star/util/XRefreshable.hpp>
#include <com/sun/star/util/DateTime.hpp>
#include <cppuhelper/component.hxx>
-#include <cppuhelper/implbase5.hxx>
-#include <cppuhelper/implbase4.hxx>
+#include <cppuhelper/implbase.hxx>
#include <osl/mutex.hxx>
#include <boost/noncopyable.hpp>
@@ -50,7 +49,7 @@ class ScEditFieldObj;
class ScDocShell;
class ScHeaderFooterTextData;
-class ScCellFieldsObj : public cppu::WeakImplHelper5<
+class ScCellFieldsObj : public cppu::WeakImplHelper<
com::sun::star::container::XEnumerationAccess,
com::sun::star::container::XIndexAccess,
com::sun::star::container::XContainer,
@@ -123,7 +122,7 @@ public:
throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
-class ScHeaderFieldsObj : public cppu::WeakImplHelper5<
+class ScHeaderFieldsObj : public cppu::WeakImplHelper<
com::sun::star::container::XEnumerationAccess,
com::sun::star::container::XIndexAccess,
com::sun::star::container::XContainer,
@@ -194,7 +193,7 @@ public:
* Generic UNO wrapper for edit engine's field item in cells, headers, and
* footers.
*/
-class ScEditFieldObj : public cppu::WeakImplHelper4<
+class ScEditFieldObj : public cppu::WeakImplHelper<
com::sun::star::text::XTextField,
com::sun::star::beans::XPropertySet,
com::sun::star::lang::XUnoTunnel,