diff options
Diffstat (limited to 'framework/inc/jobs')
-rw-r--r-- | framework/inc/jobs/helponstartup.hxx | 4 | ||||
-rw-r--r-- | framework/inc/jobs/job.hxx | 4 | ||||
-rw-r--r-- | framework/inc/jobs/shelljob.hxx | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/framework/inc/jobs/helponstartup.hxx b/framework/inc/jobs/helponstartup.hxx index 45a8f97973e3..ff98d63a4198 100644 --- a/framework/inc/jobs/helponstartup.hxx +++ b/framework/inc/jobs/helponstartup.hxx @@ -24,7 +24,7 @@ #include <macros/xtypeprovider.hxx> #include <macros/xserviceinfo.hxx> -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/frame/XFrame.hpp> #include <com/sun/star/task/XJob.hpp> @@ -41,7 +41,7 @@ namespace framework{ @author as96863 */ -class HelpOnStartup : public ::cppu::WeakImplHelper3< ::com::sun::star::lang::XServiceInfo,::com::sun::star::lang::XEventListener,::com::sun::star::task::XJob > +class HelpOnStartup : public ::cppu::WeakImplHelper< ::com::sun::star::lang::XServiceInfo,::com::sun::star::lang::XEventListener,::com::sun::star::task::XJob > { // member diff --git a/framework/inc/jobs/job.hxx b/framework/inc/jobs/job.hxx index 7f01fec6a0b5..8ed4a48ac202 100644 --- a/framework/inc/jobs/job.hxx +++ b/framework/inc/jobs/job.hxx @@ -36,7 +36,7 @@ #include <com/sun/star/util/XCloseListener.hpp> #include <com/sun/star/frame/DispatchResultEvent.hpp> -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase.hxx> #include <osl/conditn.hxx> #include <rtl/ustring.hxx> @@ -49,7 +49,7 @@ namespace framework{ synchronously or asynchronous, control its lifetime and differe between jobs with and without configuration. */ -class Job : public ::cppu::WeakImplHelper3< +class Job : public ::cppu::WeakImplHelper< css::task::XJobListener , css::frame::XTerminateListener , css::util::XCloseListener > diff --git a/framework/inc/jobs/shelljob.hxx b/framework/inc/jobs/shelljob.hxx index 2412edcecb7f..1610cd02f254 100644 --- a/framework/inc/jobs/shelljob.hxx +++ b/framework/inc/jobs/shelljob.hxx @@ -24,7 +24,7 @@ #include <macros/xtypeprovider.hxx> #include <macros/xserviceinfo.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/frame/XFrame.hpp> #include <com/sun/star/task/XJob.hpp> @@ -45,7 +45,7 @@ namespace framework{ @author as96863 */ -class ShellJob : public ::cppu::WeakImplHelper2< ::com::sun::star::lang::XServiceInfo,::com::sun::star::task::XJob > +class ShellJob : public ::cppu::WeakImplHelper< ::com::sun::star::lang::XServiceInfo,::com::sun::star::task::XJob > { // member |