summaryrefslogtreecommitdiff
path: root/forms/source/xforms/enumeration.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-11 19:58:34 +0900
committerCaolán McNamara <caolanm@redhat.com>2015-08-11 13:30:17 +0000
commit14bead7f42427bbd4fbc9f3210ab675959653998 (patch)
tree530c8bb0527a86998b8c0a9412bbee1f5e7284ca /forms/source/xforms/enumeration.hxx
parent647b5aecd4c3facc302df33386451dda732aab98 (diff)
forms: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: Ia4f56692c9beddda13ee948ab8bbc1ee95098fbf Reviewed-on: https://gerrit.libreoffice.org/17648 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'forms/source/xforms/enumeration.hxx')
-rw-r--r--forms/source/xforms/enumeration.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/xforms/enumeration.hxx b/forms/source/xforms/enumeration.hxx
index 760db7dcf301..0c1836b0a9e0 100644
--- a/forms/source/xforms/enumeration.hxx
+++ b/forms/source/xforms/enumeration.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_FORMS_SOURCE_XFORMS_ENUMERATION_HXX
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/container/XEnumeration.hpp>
#include <com/sun/star/uno/Reference.hxx>
@@ -35,7 +35,7 @@ namespace com { namespace sun { namespace star {
/** implement XEnumeration based on container::XIndexAccess */
class Enumeration
- : public cppu::WeakImplHelper1<com::sun::star::container::XEnumeration>
+ : public cppu::WeakImplHelper<com::sun::star::container::XEnumeration>
{
com::sun::star::uno::Reference<com::sun::star::container::XIndexAccess> mxContainer;
sal_Int32 mnIndex;