summaryrefslogtreecommitdiffstats
path: root/chart2/source/controller/main/ControllerCommandDispatch.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-10 16:29:31 +0900
committerNoel Grandin <noel@peralex.com>2015-07-17 09:39:04 +0200
commit5c420fcdf9f36852df793b9944db4491271d23cf (patch)
tree414b715e4b91d9eb6cf0c44ca12ebd91da0a82b9 /chart2/source/controller/main/ControllerCommandDispatch.hxx
parentBreakPoint isn't really useful (diff)
downloadcore-5c420fcdf9f36852df793b9944db4491271d23cf.tar.gz
core-5c420fcdf9f36852df793b9944db4491271d23cf.zip
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, in chart2. Change-Id: Ib145860cf757d932fd5710f92c7f9ce33904b619
Diffstat (limited to 'chart2/source/controller/main/ControllerCommandDispatch.hxx')
-rw-r--r--chart2/source/controller/main/ControllerCommandDispatch.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/main/ControllerCommandDispatch.hxx b/chart2/source/controller/main/ControllerCommandDispatch.hxx
index 049c0f20ce9a..db6506940a5f 100644
--- a/chart2/source/controller/main/ControllerCommandDispatch.hxx
+++ b/chart2/source/controller/main/ControllerCommandDispatch.hxx
@@ -23,7 +23,7 @@
#include <com/sun/star/frame/XModel.hpp>
#include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/view/XSelectionSupplier.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <memory>
@@ -40,7 +40,7 @@ struct ControllerState;
// #i63017# : need to implement the XSelectionChangeListener in order
// to update the ControllerState when the selection changes.
-typedef ::cppu::ImplInheritanceHelper1<
+typedef ::cppu::ImplInheritanceHelper<
CommandDispatch,
::com::sun::star::view::XSelectionChangeListener >
ControllerCommandDispatch_Base;