diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-17 11:59:26 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-17 07:13:29 +0000 |
commit | 7fa29ecc727c04159cee92aebc14fc5b1037a965 (patch) | |
tree | a9c7a588d304894a88023fd8020795290faa869a /dbaccess/source/ui/misc/controllerframe.cxx | |
parent | a90c6eb99c8c2167c4b1ec75a21a30a344bfea43 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, for dbaccess.
Change-Id: I60921b1b1d3b65fb9087552ed118c60dc9f89032
Reviewed-on: https://gerrit.libreoffice.org/17146
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dbaccess/source/ui/misc/controllerframe.cxx')
-rw-r--r-- | dbaccess/source/ui/misc/controllerframe.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/misc/controllerframe.cxx b/dbaccess/source/ui/misc/controllerframe.cxx index fae7d7555961..31452e2ba2f8 100644 --- a/dbaccess/source/ui/misc/controllerframe.cxx +++ b/dbaccess/source/ui/misc/controllerframe.cxx @@ -27,7 +27,7 @@ #include <com/sun/star/document/XDocumentEventBroadcaster.hpp> #include <com/sun/star/frame/XController2.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <rtl/ref.hxx> #include <sfx2/objsh.hxx> #include <tools/diagnose_ex.h> @@ -66,8 +66,8 @@ namespace dbaui using ::com::sun::star::awt::XWindow; // FrameWindowActivationListener - typedef ::cppu::WeakImplHelper1 < XTopWindowListener - > FrameWindowActivationListener_Base; + typedef ::cppu::WeakImplHelper< XTopWindowListener + > FrameWindowActivationListener_Base; class FrameWindowActivationListener : public FrameWindowActivationListener_Base { public: |