diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-03 09:33:40 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-03 17:55:02 +0000 |
commit | cfaebe5de91c8049b086019e4c0ef90d5cbb883f (patch) | |
tree | 8c230b61455c1191be0a8bf17fde1d7ff851c472 /shell/source/win32/SysShExec.hxx | |
parent | f3c7e6953675f4ed85a5212a6af3ee189400f34e (diff) |
shell: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I0eb2efbd123198c7d8a99e9dd7c613f9b2b23c2d
Reviewed-on: https://gerrit.libreoffice.org/18286
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'shell/source/win32/SysShExec.hxx')
-rw-r--r-- | shell/source/win32/SysShExec.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/win32/SysShExec.hxx b/shell/source/win32/SysShExec.hxx index e17b78860f11..b3b6ad99aa72 100644 --- a/shell/source/win32/SysShExec.hxx +++ b/shell/source/win32/SysShExec.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_SHELL_SOURCE_WIN32_SYSSHEXEC_HXX #define INCLUDED_SHELL_SOURCE_WIN32_SYSSHEXEC_HXX -#include <cppuhelper/compbase2.hxx> +#include <cppuhelper/compbase.hxx> #include <osl/mutex.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/uno/XComponentContext.hpp> @@ -39,7 +39,7 @@ protected: class CSysShExec : public CSysShExecBase, - public cppu::WeakComponentImplHelper2< + public cppu::WeakComponentImplHelper< com::sun::star::system::XSystemShellExecute, com::sun::star::lang::XServiceInfo > { |