summaryrefslogtreecommitdiff
path: root/framework/source/dispatch
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-08-07 16:08:49 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-08-07 18:08:30 +0200
commit548a2ffe3a40852d7bb3b2880b58e93c34cd41ef (patch)
tree4df975482ad934d2069d32dc9347cf3307791b64 /framework/source/dispatch
parent87f242e036082c1b659536dec2bf779d88910249 (diff)
remove bogus date information
Change-Id: I2789153ee35f4ec10e760f9412eb7d379de031bf
Diffstat (limited to 'framework/source/dispatch')
-rw-r--r--framework/source/dispatch/dispatchprovider.cxx10
-rw-r--r--framework/source/dispatch/mailtodispatcher.cxx16
-rw-r--r--framework/source/dispatch/servicehandler.cxx16
3 files changed, 0 insertions, 42 deletions
diff --git a/framework/source/dispatch/dispatchprovider.cxx b/framework/source/dispatch/dispatchprovider.cxx
index 9b86bb661986..f570dd239d19 100644
--- a/framework/source/dispatch/dispatchprovider.cxx
+++ b/framework/source/dispatch/dispatchprovider.cxx
@@ -85,8 +85,6 @@ DEFINE_XTYPEPROVIDER_2( DispatchProvider ,
reference to servicemanager to create new services.
@param xFrame
reference to our owner frame.
-
- @modified 17.05.2002 10:07, as96863
*/
DispatchProvider::DispatchProvider( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory ,
const css::uno::Reference< css::frame::XFrame >& xFrame )
@@ -102,8 +100,6 @@ DispatchProvider::DispatchProvider( const css::uno::Reference< css::lang::XMulti
/**
@short protected(!) dtor for deinitializing
@descr We made it protected to prevent using of us as base class instead as a member.
-
- @modified 17.05.2002 10:05, as96863
*/
DispatchProvider::~DispatchProvider()
{
@@ -127,7 +123,6 @@ DispatchProvider::~DispatchProvider()
@return A reference to a dispatch object for this URL (if someone was found!).
@threadsafe yes
- @modified 17.05.2002 10:59, as96863
*/
css::uno::Reference< css::frame::XDispatch > SAL_CALL DispatchProvider::queryDispatch( const css::util::URL& aURL ,
const ::rtl::OUString& sTargetFrameName ,
@@ -165,7 +160,6 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL DispatchProvider::queryDis
@return A reference a list of dispatch objects for these URLs - may with some <NULL/> values inside.
@threadsafe yes
- @modified 17.05.2002 09:55, as96863
*/
css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL DispatchProvider::queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptions ) throw( css::uno::RuntimeException )
{
@@ -196,7 +190,6 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Disp
in another way. So we implement different specialized metods for every one.
@threadsafe yes
- @modified 20.08.2003 08:32, as96863
*/
css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryDesktopDispatch( const css::uno::Reference< css::frame::XFrame > xDesktop ,
const css::util::URL& aURL ,
@@ -521,7 +514,6 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryFrame
@return A dispatch object if a handler was found and agree with the given URL or <NULL/> otherwhise.
@threadsafe yes
- @modified 05.09.2002 13:43, as96863
*/
css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_searchProtocolHandler( const css::util::URL& aURL )
{
@@ -598,7 +590,6 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_searchProt
@return A reference to a dispatch helper.
@threadsafe yes
- @modified 20.08.2003 10:22, as96863
*/
css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_getOrCreateDispatchHelper( EDispatchHelper eHelper ,
const css::uno::Reference< css::frame::XFrame >& xOwner ,
@@ -699,7 +690,6 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_getOrCreat
@return <TRUE/> if somewhere could handle that - <FALSE/> otherwise.
@threadsafe yes
- @modified 17.05.2002 09:47, as96863
*/
sal_Bool DispatchProvider::implts_isLoadableContent( const css::util::URL& aURL )
{
diff --git a/framework/source/dispatch/mailtodispatcher.cxx b/framework/source/dispatch/mailtodispatcher.cxx
index cc7fe62705ec..0b5f437debb9 100644
--- a/framework/source/dispatch/mailtodispatcher.cxx
+++ b/framework/source/dispatch/mailtodispatcher.cxx
@@ -110,8 +110,6 @@ DEFINE_INIT_SERVICE(MailToDispatcher,
@param xFactory
reference to uno servicemanager for creation of new services
-
- @modified 30.04.2002 14:10, as96863
*/
MailToDispatcher::MailToDispatcher( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory )
// Init baseclasses first
@@ -127,8 +125,6 @@ MailToDispatcher::MailToDispatcher( const css::uno::Reference< css::lang::XMulti
/**
@short standard dtor
@descr -
-
- @modified 30.04.2002 14:10, as96863
*/
MailToDispatcher::~MailToDispatcher()
{
@@ -145,8 +141,6 @@ MailToDispatcher::~MailToDispatcher()
instance or disagree by returning <NULL/>.
We don't create new dispatch instances here realy - we return THIS as result to handle it
at the same implementation.
-
- @modified 02.05.2002 15:25, as96863
*/
css::uno::Reference< css::frame::XDispatch > SAL_CALL MailToDispatcher::queryDispatch( const css::util::URL& aURL ,
const ::rtl::OUString& /*sTarget*/ ,
@@ -163,8 +157,6 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL MailToDispatcher::queryDis
/**
@short do the same like dispatch() but for multiple requests at the same time
@descr -
-
- @modified 02.05.2002 15:27, as96863
*/
css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL MailToDispatcher::queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptor ) throw( css::uno::RuntimeException )
{
@@ -192,8 +184,6 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Mail
mail URL which should be executed
@param lArguments
list of optional arguments for this mail request
-
- @modified 30.04.2002 14:15, as96863
*/
void SAL_CALL MailToDispatcher::dispatch( const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) throw( css::uno::RuntimeException )
@@ -218,8 +208,6 @@ void SAL_CALL MailToDispatcher::dispatch( const css::util::URL&
list of optional arguments for this mail request
@param xListener
reference to a valid listener for state events
-
- @modified 30.04.2002 14:49, as96863
*/
void SAL_CALL MailToDispatcher::dispatchWithNotification( const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments,
@@ -261,8 +249,6 @@ void SAL_CALL MailToDispatcher::dispatchWithNotification( const css::util::URL&
Note: Our internal used shell executor doesn't return any state value - so we must
belive that call was successfully.
<FALSE/> if neccessary resource couldn't be created or an exception was thrown.
-
- @modified 30.04.2002 14:49, as96863
*/
sal_Bool MailToDispatcher::implts_dispatch( const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& /*lArguments*/ ) throw( css::uno::RuntimeException )
@@ -309,8 +295,6 @@ sal_Bool MailToDispatcher::implts_dispatch( const css::util::URL&
reference to a valid listener for state events
@param aURL
URL about listener will be informed, if something occurred
-
- @modified 30.04.2002 14:49, as96863
*/
void SAL_CALL MailToDispatcher::addStatusListener( const css::uno::Reference< css::frame::XStatusListener >& /*xListener*/ ,
const css::util::URL& /*aURL*/ ) throw( css::uno::RuntimeException )
diff --git a/framework/source/dispatch/servicehandler.cxx b/framework/source/dispatch/servicehandler.cxx
index 51de3d4494fe..72a8e64f252d 100644
--- a/framework/source/dispatch/servicehandler.cxx
+++ b/framework/source/dispatch/servicehandler.cxx
@@ -109,8 +109,6 @@ DEFINE_INIT_SERVICE(ServiceHandler,
@param xFactory
reference to uno servicemanager for creation of new services
-
- @modified 02.05.2002 08:16, as96863
*/
ServiceHandler::ServiceHandler( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory )
// Init baseclasses first
@@ -126,8 +124,6 @@ ServiceHandler::ServiceHandler( const css::uno::Reference< css::lang::XMultiServ
/**
@short standard dtor
@descr -
-
- @modified 02.05.2002 08:16, as96863
*/
ServiceHandler::~ServiceHandler()
{
@@ -144,8 +140,6 @@ ServiceHandler::~ServiceHandler()
instance or disagree by returning <NULL/>.
We don't create new dispatch instances here realy - we return THIS as result to handle it
at the same implementation.
-
- @modified 02.05.2002 15:25, as96863
*/
css::uno::Reference< css::frame::XDispatch > SAL_CALL ServiceHandler::queryDispatch( const css::util::URL& aURL ,
const ::rtl::OUString& /*sTarget*/ ,
@@ -162,8 +156,6 @@ css::uno::Reference< css::frame::XDispatch > SAL_CALL ServiceHandler::queryDispa
/**
@short do the same like dispatch() but for multiple requests at the same time
@descr -
-
- @modified 02.05.2002 15:27, as96863
*/
css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL ServiceHandler::queryDispatches( const css::uno::Sequence< css::frame::DispatchDescriptor >& lDescriptor ) throw( css::uno::RuntimeException )
{
@@ -190,8 +182,6 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Serv
uno URL which should be executed
@param lArguments
list of optional arguments for this request
-
- @modified 02.05.2002 08:19, as96863
*/
void SAL_CALL ServiceHandler::dispatch( const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) throw( css::uno::RuntimeException )
@@ -216,8 +206,6 @@ void SAL_CALL ServiceHandler::dispatch( const css::util::URL&
list of optional arguments for this request
@param xListener
optional listener for state events
-
- @modified 30.04.2002 14:49, as96863
*/
void SAL_CALL ServiceHandler::dispatchWithNotification( const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments,
@@ -259,8 +247,6 @@ void SAL_CALL ServiceHandler::dispatchWithNotification( const css::util::URL&
@return <NULL/> if requested service couldn't be created successullfy;
a valid reference otherwise. This return value can be used to indicate,
if dispatch was successfully or not.
-
- @modified 02.05.2002 10:51, as96863
*/
css::uno::Reference< css::uno::XInterface > ServiceHandler::implts_dispatch( const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& /*lArguments*/ ) throw( css::uno::RuntimeException )
@@ -330,8 +316,6 @@ css::uno::Reference< css::uno::XInterface > ServiceHandler::implts_dispatch( con
reference to a valid listener for state events
@param aURL
URL about listener will be informed, if something occurred
-
- @modified 30.04.2002 14:49, as96863
*/
void SAL_CALL ServiceHandler::addStatusListener( const css::uno::Reference< css::frame::XStatusListener >& /*xListener*/ ,
const css::util::URL& /*aURL*/ ) throw( css::uno::RuntimeException )