summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbatabstops.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbatabstops.cxx')
-rw-r--r--sw/source/ui/vba/vbatabstops.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbatabstops.cxx b/sw/source/ui/vba/vbatabstops.cxx
index 128b6644a38a..7ae01e32d383 100644
--- a/sw/source/ui/vba/vbatabstops.cxx
+++ b/sw/source/ui/vba/vbatabstops.cxx
@@ -21,6 +21,7 @@
#include <com/sun/star/style/TabAlign.hpp>
#include <ooo/vba/word/WdTabLeader.hpp>
#include <ooo/vba/word/WdTabAlignment.hpp>
+#include <cppuhelper/implbase.hxx>
using namespace ::ooo::vba;
using namespace ::com::sun::star;
@@ -37,7 +38,7 @@ static void lcl_setTabStops( const uno::Reference< beans::XPropertySet >& xParaP
xParaProps->setPropertyValue("ParaTabStops", uno::makeAny( aSeq ) );
}
-typedef ::cppu::WeakImplHelper2< container::XIndexAccess, container::XEnumerationAccess > TabStopCollectionHelper_Base;
+typedef ::cppu::WeakImplHelper< container::XIndexAccess, container::XEnumerationAccess > TabStopCollectionHelper_Base;
class TabStopsEnumWrapper : public EnumerationHelper_BASE
{