summaryrefslogtreecommitdiff
path: root/accessibility/source
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-01 14:42:39 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-06 07:37:23 +0000
commit00daf98eddf2f2b27136282de1f3b47d4677b087 (patch)
tree6923ec957555e2aa3d14169e3f8265b4d34b40db /accessibility/source
parent15c0fba5c2adb72dfaaf2dfeb0fc5c0dbdfa6e26 (diff)
tdf#88206: replace cppu::WeakImplHelper* and cppu::WeakComponentImplHelper*
with variadic variants, and drop unused #includes, in accessibility. Change-Id: Iddbe0f7932108319a5105448a74c570265d601ce Reviewed-on: https://gerrit.libreoffice.org/16639 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'accessibility/source')
-rw-r--r--accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx3
-rw-r--r--accessibility/source/helper/acc_factory.cxx1
2 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx b/accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
index 11dc7300e339..4d3c320d3361 100644
--- a/accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
+++ b/accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
@@ -27,6 +27,7 @@
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
#include <com/sun/star/lang/DisposedException.hpp>
+#include <cppuhelper/implbase.hxx>
#include <svtools/toolpanel/toolpaneldeck.hxx>
#include <svtools/toolpanel/paneltabbar.hxx>
#include <unotools/accessiblestatesethelper.hxx>
@@ -64,7 +65,7 @@ namespace accessibility
typedef ::com::sun::star::awt::Point UnoPoint;
// AccessibleWrapper
- typedef ::cppu::WeakImplHelper1< XAccessible > AccessibleWrapper_Base;
+ typedef ::cppu::WeakImplHelper< XAccessible > AccessibleWrapper_Base;
class AccessibleWrapper : public AccessibleWrapper_Base
{
public:
diff --git a/accessibility/source/helper/acc_factory.cxx b/accessibility/source/helper/acc_factory.cxx
index b7ff430cc7b3..a3161b492667 100644
--- a/accessibility/source/helper/acc_factory.cxx
+++ b/accessibility/source/helper/acc_factory.cxx
@@ -61,7 +61,6 @@
#include <accessibility/extended/AccessibleGridControl.hxx>
#include <svtools/accessibletable.hxx>
#include <vcl/popupmenuwindow.hxx>
-#include <cppuhelper/implbase1.hxx>
#include "floatingwindowaccessible.hxx"