summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbamenuitems.cxx
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/source/ui/vba/vbamenuitems.cxx
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/source/ui/vba/vbamenuitems.cxx')
-rw-r--r--sc/source/ui/vba/vbamenuitems.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbamenuitems.cxx b/sc/source/ui/vba/vbamenuitems.cxx
index 2d6c20a1e572..4ef5b911a332 100644
--- a/sc/source/ui/vba/vbamenuitems.cxx
+++ b/sc/source/ui/vba/vbamenuitems.cxx
@@ -9,12 +9,13 @@
#include "vbamenuitems.hxx"
#include "vbamenuitem.hxx"
#include "vbamenu.hxx"
+#include <cppuhelper/implbase.hxx>
#include <ooo/vba/office/MsoControlType.hpp>
using namespace com::sun::star;
using namespace ooo::vba;
-typedef ::cppu::WeakImplHelper1< container::XEnumeration > MenuEnumeration_BASE;
+typedef ::cppu::WeakImplHelper< container::XEnumeration > MenuEnumeration_BASE;
class MenuEnumeration : public MenuEnumeration_BASE
{