summaryrefslogtreecommitdiff
path: root/framework/source/jobs
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-15 04:49:39 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-15 04:49:39 +0200
commit60fbefc615f8931bf8b952293fc4eb4ac35dafd8 (patch)
tree2a91fcbcb206d60dcc652a336bb9b6813578815e /framework/source/jobs
parent7f71ed1c62775a4e5b2efebf55f284a5c32b2df4 (diff)
fdo#60724 informations -> information
Change-Id: Ifd34ebfc7fe01b4a470eb072597dd3ec97c97863
Diffstat (limited to 'framework/source/jobs')
-rw-r--r--framework/source/jobs/helponstartup.cxx2
-rw-r--r--framework/source/jobs/job.cxx2
-rw-r--r--framework/source/jobs/jobdata.cxx14
-rw-r--r--framework/source/jobs/jobdispatch.cxx4
-rw-r--r--framework/source/jobs/jobexecutor.cxx4
-rw-r--r--framework/source/jobs/joburl.cxx2
-rw-r--r--framework/source/jobs/shelljob.cxx2
7 files changed, 15 insertions, 15 deletions
diff --git a/framework/source/jobs/helponstartup.cxx b/framework/source/jobs/helponstartup.cxx
index f099e0e94ef2..19b35a40f4b8 100644
--- a/framework/source/jobs/helponstartup.cxx
+++ b/framework/source/jobs/helponstartup.cxx
@@ -79,7 +79,7 @@ DEFINE_INIT_SERVICE(HelpOnStartup,
/* Attention
I think we don't need any mutex or lock here ... because we are called by our own static method impl_createInstance()
to create a new instance of this class by our own supported service factory.
- see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further informations!
+ see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further information!
*/
// create some needed uno services and cache it
m_xModuleManager = css::frame::ModuleManager::create( m_xContext );
diff --git a/framework/source/jobs/job.cxx b/framework/source/jobs/job.cxx
index 6eb116a77043..22d286cdad3d 100644
--- a/framework/source/jobs/job.cxx
+++ b/framework/source/jobs/job.cxx
@@ -351,7 +351,7 @@ void Job::die()
//________________________________
/**
@short generates list of arguments for job execute
- @descr There exist a set of informations, which can be needed by a job.
+ @descr There exist a set of information, which can be needed by a job.
a) it's static configuration data (Equals for all jobs. )
b) it's specific configuration data (Different for every job.)
c) some environment values (e.g. the frame, for which this job was started)
diff --git a/framework/source/jobs/jobdata.cxx b/framework/source/jobs/jobdata.cxx
index fa1633472efd..a39114d82a7c 100644
--- a/framework/source/jobs/jobdata.cxx
+++ b/framework/source/jobs/jobdata.cxx
@@ -139,7 +139,7 @@ JobData::~JobData()
/**
@short initalize this instance as a job with configuration
@descr They given alias can be used to address some configuraton data.
- We read it and fill our internal structures. Of course old informations
+ We read it and fill our internal structures. Of course old information
will be lost doing so.
@param sAlias
@@ -149,10 +149,10 @@ void JobData::setAlias( const OUString& sAlias )
{
/* SAFE { */
WriteGuard aWriteLock(m_aLock);
- // delete all old informations! Otherwhise we mix it with the new one ...
+ // delete all old information! Otherwhise we mix it with the new one ...
impl_reset();
- // take over the new informations
+ // take over the new information
m_sAlias = sAlias;
m_eMode = E_ALIAS;
@@ -209,7 +209,7 @@ void JobData::setAlias( const OUString& sAlias )
//________________________________
/**
@short initalize this instance as a job without configuration
- @descr This job has no configuration data. We have to forget all old informations
+ @descr This job has no configuration data. We have to forget all old information
and set only some of them new, so this instance can work.
@param sService
@@ -220,9 +220,9 @@ void JobData::setService( const OUString& sService )
/* SAFE { */
WriteGuard aWriteLock(m_aLock);
- // delete all old informations! Otherwhise we mix it with the new one ...
+ // delete all old information! Otherwhise we mix it with the new one ...
impl_reset();
- // take over the new informations
+ // take over the new information
m_sService = sService;
m_eMode = E_SERVICE;
@@ -698,7 +698,7 @@ css::uno::Sequence< OUString > JobData::getEnabledJobsForEvent( const css::uno::
@short reset all internal structures
@descr If somehwere recycle this instance, he can switch from one
using mode to another one. But then we have to reset all currently
- used informations. Otherwhise we mix it and they can make trouble.
+ used information. Otherwhise we mix it and they can make trouble.
But note: that does not set defaults for internal used members, which
does not relate to any job property! e.g. the reference to the global
diff --git a/framework/source/jobs/jobdispatch.cxx b/framework/source/jobs/jobdispatch.cxx
index 90d3dc257834..066ae69ea882 100644
--- a/framework/source/jobs/jobdispatch.cxx
+++ b/framework/source/jobs/jobdispatch.cxx
@@ -66,7 +66,7 @@ DEFINE_INIT_SERVICE( JobDispatch,
/*Attention
I think we don't need any mutex or lock here ... because we are called by our own static method impl_createInstance()
to create a new instance of this class by our own supported service factory.
- see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further informations!
+ see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further information!
*/
}
)
@@ -101,7 +101,7 @@ JobDispatch::~JobDispatch()
//________________________________
/**
@short implementation of XInitalization
- @descr A protocol handler can provide this functionality, if it wish to get additional informations
+ @descr A protocol handler can provide this functionality, if it wish to get additional information
about the context it runs. In this case the frame reference would be given by the outside code.
@param lArguments
diff --git a/framework/source/jobs/jobexecutor.cxx b/framework/source/jobs/jobexecutor.cxx
index 6b133a5c219d..54fe8469ae08 100644
--- a/framework/source/jobs/jobexecutor.cxx
+++ b/framework/source/jobs/jobexecutor.cxx
@@ -75,7 +75,7 @@ DEFINE_INIT_SERVICE( JobExecutor,
/*Attention
I think we don't need any mutex or lock here ... because we are called by our own static method impl_createInstance()
to create a new instance of this class by our own supported service factory.
- see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further informations!
+ see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further information!
*/
// read the list of all currently registered events inside configuration.
// e.g. "/org.openoffice.Office.Jobs/Events/<event name>"
@@ -120,7 +120,7 @@ JobExecutor::JobExecutor( /*IN*/ const css::uno::Reference< css::lang::XMultiSer
, m_aConfig (comphelper::getComponentContext(xSMGR), OUString::createFromAscii(JobData::EVENTCFG_ROOT) )
{
// Don't do any reference related code here! Do it inside special
- // impl_ method() ... see DEFINE_INIT_SERVICE() macro for further informations.
+ // impl_ method() ... see DEFINE_INIT_SERVICE() macro for further information.
}
JobExecutor::~JobExecutor()
diff --git a/framework/source/jobs/joburl.cxx b/framework/source/jobs/joburl.cxx
index 94810a72db7f..d42e23593f37 100644
--- a/framework/source/jobs/joburl.cxx
+++ b/framework/source/jobs/joburl.cxx
@@ -329,7 +329,7 @@ void JobURL::impldbg_checkIt()
@short helper debug method
@descr It uses the given parameter to create a new instance of a JobURL.
They results will be compared with the exepected ones.
- The a log will be written, which contains some detailed informations
+ The a log will be written, which contains some detailed information
for this sub test.
@param pURL
diff --git a/framework/source/jobs/shelljob.cxx b/framework/source/jobs/shelljob.cxx
index 5170af2f0cf8..52583f864bea 100644
--- a/framework/source/jobs/shelljob.cxx
+++ b/framework/source/jobs/shelljob.cxx
@@ -73,7 +73,7 @@ DEFINE_INIT_SERVICE(ShellJob,
/* Attention
I think we don't need any mutex or lock here ... because we are called by our own static method impl_createInstance()
to create a new instance of this class by our own supported service factory.
- see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further informations!
+ see macro DEFINE_XSERVICEINFO_MULTISERVICE and "impl_initService()" for further information!
*/
}
)