summaryrefslogtreecommitdiff
path: root/sc/inc/textuno.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/textuno.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/textuno.hxx')
-rw-r--r--sc/inc/textuno.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx
index 3223c066f081..93c7b6696f06 100644
--- a/sc/inc/textuno.hxx
+++ b/sc/inc/textuno.hxx
@@ -28,8 +28,7 @@
#include <com/sun/star/sheet/XHeaderFooterContent.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp>
-#include <cppuhelper/implbase3.hxx>
-#include <cppuhelper/implbase5.hxx>
+#include <cppuhelper/implbase.hxx>
#include <rtl/ref.hxx>
#include "scdllapi.h"
@@ -57,7 +56,7 @@ struct ScHeaderFieldData;
// ScHeaderFooterContentObj is a dumb container which must be re-written into
// the page template using setPropertyValue
-class ScHeaderFooterContentObj : public cppu::WeakImplHelper3<
+class ScHeaderFooterContentObj : public cppu::WeakImplHelper<
com::sun::star::sheet::XHeaderFooterContent,
com::sun::star::lang::XUnoTunnel,
com::sun::star::lang::XServiceInfo >
@@ -140,7 +139,7 @@ public:
*
* ScHeaderFooterTextObj changes the text in a ScHeaderFooterContentObj.
*/
-class ScHeaderFooterTextObj : public cppu::WeakImplHelper5<
+class ScHeaderFooterTextObj : public cppu::WeakImplHelper<
com::sun::star::text::XText,
com::sun::star::text::XTextRangeMover,
com::sun::star::container::XEnumerationAccess,