diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-22 23:48:08 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-23 07:16:39 +0000 |
commit | 4ee98aec9f1835bba6eaab9e982c255e8c99be1e (patch) | |
tree | 8c076106bbae600da5b9442ccf0e9938487d5cef /desktop/source/app/dispatchwatcher.hxx | |
parent | 62824a22161501a62b950ed461dc5839fa5ea942 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants in desktop.
Change-Id: I84d4c4b36fff95b5e1646f4df731d0b83ee1fe3e
Reviewed-on: https://gerrit.libreoffice.org/17301
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'desktop/source/app/dispatchwatcher.hxx')
-rw-r--r-- | desktop/source/app/dispatchwatcher.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/dispatchwatcher.hxx b/desktop/source/app/dispatchwatcher.hxx index e50372bad0fc..443eb19dc2b2 100644 --- a/desktop/source/app/dispatchwatcher.hxx +++ b/desktop/source/app/dispatchwatcher.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_DESKTOP_SOURCE_APP_DISPATCHWATCHER_HXX #define INCLUDED_DESKTOP_SOURCE_APP_DISPATCHWATCHER_HXX -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/frame/XNotifyingDispatch.hpp> #include <com/sun/star/frame/XDispatchResultListener.hpp> @@ -43,7 +43,7 @@ class DispatchWatcherHashMap : public std::unordered_map< OUString, sal_Int32, O { }; -class DispatchWatcher : public ::cppu::WeakImplHelper1< ::com::sun::star::frame::XDispatchResultListener > +class DispatchWatcher : public ::cppu::WeakImplHelper< ::com::sun::star::frame::XDispatchResultListener > { public: enum RequestType |