From a9a0ed1edc6452560a6e8985f5a33f09859af977 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 29 May 2012 16:24:58 +0300 Subject: Bin a bunch of pointless comments Change-Id: Ic428010ce8c07a1265fef6f0fcfa594501cb9267 --- framework/source/dispatch/interceptionhelper.cxx | 24 --------------- framework/source/dispatch/loaddispatcher.cxx | 38 ------------------------ 2 files changed, 62 deletions(-) (limited to 'framework/source/dispatch') diff --git a/framework/source/dispatch/interceptionhelper.cxx b/framework/source/dispatch/interceptionhelper.cxx index 61beec78c8a7..61523cf0bb86 100644 --- a/framework/source/dispatch/interceptionhelper.cxx +++ b/framework/source/dispatch/interceptionhelper.cxx @@ -56,18 +56,12 @@ sal_Bool InterceptionHelper::m_bPreferrFirstInterceptor = sal_True; //_______________________________________________ // declarations -/*----------------------------------------------------------------------------- - 31.03.2003 09:02 ------------------------------------------------------------------------------*/ DEFINE_XINTERFACE_3(InterceptionHelper , OWeakObject , DIRECT_INTERFACE(css::frame::XDispatchProvider ), DIRECT_INTERFACE(css::frame::XDispatchProviderInterception), DIRECT_INTERFACE(css::lang::XEventListener )) -/*----------------------------------------------------------------------------- - 31.03.2003 09:02 ------------------------------------------------------------------------------*/ InterceptionHelper::InterceptionHelper(const css::uno::Reference< css::frame::XFrame >& xOwner, const css::uno::Reference< css::frame::XDispatchProvider >& xSlave) // Init baseclasses first @@ -79,16 +73,10 @@ InterceptionHelper::InterceptionHelper(const css::uno::Reference< css::frame::XF { } -/*----------------------------------------------------------------------------- - 31.03.2003 09:02 ------------------------------------------------------------------------------*/ InterceptionHelper::~InterceptionHelper() { } -/*----------------------------------------------------------------------------- - 31.03.2003 09:09 ------------------------------------------------------------------------------*/ css::uno::Reference< css::frame::XDispatch > SAL_CALL InterceptionHelper::queryDispatch(const css::util::URL& aURL , const ::rtl::OUString& sTargetFrameName, sal_Int32 nSearchFlags ) @@ -130,9 +118,6 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL InterceptionHelper::queryD return xReturn; } -/*----------------------------------------------------------------------------- - 31.03.2003 07:58 ------------------------------------------------------------------------------*/ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL InterceptionHelper::queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptor ) throw(css::uno::RuntimeException) { @@ -147,9 +132,6 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Inte return lDispatches; } -/*----------------------------------------------------------------------------- - 31.03.2003 10:20 ------------------------------------------------------------------------------*/ void SAL_CALL InterceptionHelper::registerDispatchProviderInterceptor(const css::uno::Reference< css::frame::XDispatchProviderInterceptor >& xInterceptor) throw(css::uno::RuntimeException) { @@ -230,9 +212,6 @@ void SAL_CALL InterceptionHelper::registerDispatchProviderInterceptor(const css: xOwner->contextChanged(); } -/*----------------------------------------------------------------------------- - 31.03.2003 10:27 ------------------------------------------------------------------------------*/ void SAL_CALL InterceptionHelper::releaseDispatchProviderInterceptor(const css::uno::Reference< css::frame::XDispatchProviderInterceptor >& xInterceptor) throw(css::uno::RuntimeException) { @@ -280,9 +259,6 @@ void SAL_CALL InterceptionHelper::releaseDispatchProviderInterceptor(const css:: xOwner->contextChanged(); } -/*----------------------------------------------------------------------------- - 31.03.2003 10:31 ------------------------------------------------------------------------------*/ #define FORCE_DESTRUCTION_OF_INTERCEPTION_CHAIN void SAL_CALL InterceptionHelper::disposing(const css::lang::EventObject& aEvent) throw(css::uno::RuntimeException) diff --git a/framework/source/dispatch/loaddispatcher.cxx b/framework/source/dispatch/loaddispatcher.cxx index d512b19bfac8..9efdee31a6c0 100644 --- a/framework/source/dispatch/loaddispatcher.cxx +++ b/framework/source/dispatch/loaddispatcher.cxx @@ -26,33 +26,16 @@ * ************************************************************************/ - -//_______________________________________________ -// my own includes #include #include #include -//_______________________________________________ -// interface includes #include -//_______________________________________________ -// includes of other projects - -//_______________________________________________ -// namespace - namespace framework{ namespace css = ::com::sun::star; -//_______________________________________________ -// declarations - -/*----------------------------------------------- - 20.08.2003 09:52 ------------------------------------------------*/ LoadDispatcher::LoadDispatcher(const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR , const css::uno::Reference< css::frame::XFrame >& xOwnerFrame , const ::rtl::OUString sTargetName , @@ -66,17 +49,11 @@ LoadDispatcher::LoadDispatcher(const css::uno::Reference< css::lang::XMultiServi { } -/*----------------------------------------------- - 20.08.2003 09:12 ------------------------------------------------*/ LoadDispatcher::~LoadDispatcher() { m_xSMGR.clear(); } -/*----------------------------------------------- - 20.08.2003 09:58 ------------------------------------------------*/ void SAL_CALL LoadDispatcher::dispatchWithNotification(const css::util::URL& aURL , const css::uno::Sequence< css::beans::PropertyValue >& lArguments, const css::uno::Reference< css::frame::XDispatchResultListener >& xListener ) @@ -85,9 +62,6 @@ void SAL_CALL LoadDispatcher::dispatchWithNotification(const css::util::URL& impl_dispatch( aURL, lArguments, xListener ); } -/*----------------------------------------------- - 20.08.2003 09:16 ------------------------------------------------*/ void SAL_CALL LoadDispatcher::dispatch(const css::util::URL& aURL , const css::uno::Sequence< css::beans::PropertyValue >& lArguments) throw(css::uno::RuntimeException) @@ -95,9 +69,6 @@ void SAL_CALL LoadDispatcher::dispatch(const css::util::URL& impl_dispatch( aURL, lArguments, css::uno::Reference< css::frame::XDispatchResultListener >() ); } -/*----------------------------------------------- - 14.04.2008 ------------------------------------------------*/ css::uno::Any SAL_CALL LoadDispatcher::dispatchWithReturnValue( const css::util::URL& rURL, const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) throw( css::uno::RuntimeException ) @@ -105,27 +76,18 @@ css::uno::Any SAL_CALL LoadDispatcher::dispatchWithReturnValue( const css::util: return impl_dispatch( rURL, lArguments, css::uno::Reference< css::frame::XDispatchResultListener >()); } -/*----------------------------------------------- - 20.08.2003 10:48 ------------------------------------------------*/ void SAL_CALL LoadDispatcher::addStatusListener(const css::uno::Reference< css::frame::XStatusListener >& /*xListener*/, const css::util::URL& /*aURL*/ ) throw(css::uno::RuntimeException) { } -/*----------------------------------------------- - 20.08.2003 10:49 ------------------------------------------------*/ void SAL_CALL LoadDispatcher::removeStatusListener(const css::uno::Reference< css::frame::XStatusListener >& /*xListener*/, const css::util::URL& /*aURL*/ ) throw(css::uno::RuntimeException) { } -/*----------------------------------------------- - 20.08.2003 09:58 ------------------------------------------------*/ css::uno::Any LoadDispatcher::impl_dispatch( const css::util::URL& rURL, const css::uno::Sequence< css::beans::PropertyValue >& lArguments, const css::uno::Reference< css::frame::XDispatchResultListener >& xListener ) -- cgit v1.2.3