summaryrefslogtreecommitdiff
path: root/framework/inc/jobs
diff options
context:
space:
mode:
Diffstat (limited to 'framework/inc/jobs')
-rw-r--r--framework/inc/jobs/configaccess.hxx2
-rw-r--r--framework/inc/jobs/job.hxx12
-rw-r--r--framework/inc/jobs/jobdata.hxx8
-rw-r--r--framework/inc/jobs/jobresult.hxx2
4 files changed, 12 insertions, 12 deletions
diff --git a/framework/inc/jobs/configaccess.hxx b/framework/inc/jobs/configaccess.hxx
index 2a713c60d333..b50b90fce508 100644
--- a/framework/inc/jobs/configaccess.hxx
+++ b/framework/inc/jobs/configaccess.hxx
@@ -63,7 +63,7 @@ class FWI_DLLPUBLIC ConfigAccess : public ThreadHelpBase
/**
reference to the uno service manager
- It's neccessary to instanciate own needed services.
+ It's necessary to instanciate own needed services.
*/
css::uno::Reference< css::uno::XComponentContext > m_xContext;
diff --git a/framework/inc/jobs/job.hxx b/framework/inc/jobs/job.hxx
index c3cac37ad8f3..4135f9f4c7df 100644
--- a/framework/inc/jobs/job.hxx
+++ b/framework/inc/jobs/job.hxx
@@ -49,7 +49,7 @@ namespace framework{
/**
@short it represent a job; execute it and control it's lifetime
- @descr This implemetation can be used to wrapp jobs, execute it
+ @descr This implementation can be used to wrapp jobs, execute it
synchronously or asynchronous, control it's lifetime
and differe between jobs with and without configuration.
*/
@@ -82,7 +82,7 @@ class Job : private ThreadHelpBase
private:
/**
- hold all neccessary information about this job.
+ hold all necessary information about this job.
It can be used for both modes: with and without configuration.
*/
JobData m_aJobCfg;
@@ -108,7 +108,7 @@ class Job : private ThreadHelpBase
We use it too, to listen for closing events of this resource.
Please note: If m_xFrame is set - m_xModel should be NULL.
- Only one environment can be supported realy.
+ Only one environment can be supported really.
*/
css::uno::Reference< css::frame::XFrame > m_xFrame;
@@ -118,13 +118,13 @@ class Job : private ThreadHelpBase
We use it too, to listen for closing events of this resource.
Please note: If m_xModel is set - m_xFrame should be NULL.
- Only one environment can be supported realy.
+ Only one environment can be supported really.
*/
css::uno::Reference< css::frame::XModel > m_xModel;
/**
We are registered at this instance to listen for office shutdown events.
- It's neccessary supress it (if possible) or to react in the right way.
+ It's necessary supress it (if possible) or to react in the right way.
*/
css::uno::Reference< css::frame::XDesktop2 > m_xDesktop;
@@ -145,7 +145,7 @@ class Job : private ThreadHelpBase
/**
Holds the state, if we are listen for desktop/frame or model closing events or not.
- The used references are not realy enough to detect a valid listener connection.
+ The used references are not really enough to detect a valid listener connection.
Thats why we use this additional information here too.
*/
sal_Bool m_bListenOnDesktop;
diff --git a/framework/inc/jobs/jobdata.hxx b/framework/inc/jobs/jobdata.hxx
index a2df2b108554..6701311447a8 100644
--- a/framework/inc/jobs/jobdata.hxx
+++ b/framework/inc/jobs/jobdata.hxx
@@ -39,7 +39,7 @@ namespace framework{
/**
- @short holds all neccessary information about a job and
+ @short holds all necessary information about a job and
handle it's configuration (if any exist!)
@descr It can be used rom different use cases as a container
(or proxy) for all config data of a registered job.
@@ -125,7 +125,7 @@ class JobData : private ThreadHelpBase
occurs. E.g. "onDocumentOpened" in case "OnNew" or "OnLoad" was notified to the JobExecutor instance.
And normaly the original event is transported as parameter set to the executed job. But then such job
cant differ between e.g. "OnNew" and "onDocumentOpened".
- That's why we must know, for which type of event the job was realy triggered .-)
+ That's why we must know, for which type of event the job was really triggered .-)
The information "sDocEvent" from this struct must be set on the member JobData::m_sEvent from outside
user of such Jobdata structure.
@@ -160,7 +160,7 @@ class JobData : private ThreadHelpBase
- as a job without any configuration
First mode is triggered by an alias, which points to the
configuration entries. Second mode is specified by an uno service
- or implementation name. Then we does the same things (use the same interfaces)
+ or implementation name. Then we do the same things (use the same interfaces)
but don't handle any configuration data.
The effect: This mode can be detected by this member.
*/
@@ -177,7 +177,7 @@ class JobData : private ThreadHelpBase
/**
the alias name of this job.
Is used as entry of configuration set for job registration, to find all
- neccessary properties of it..
+ necessary properties of it..
*/
OUString m_sAlias;
diff --git a/framework/inc/jobs/jobresult.hxx b/framework/inc/jobs/jobresult.hxx
index 8c54a19f72f1..4d24d4ec1a71 100644
--- a/framework/inc/jobs/jobresult.hxx
+++ b/framework/inc/jobs/jobresult.hxx
@@ -76,7 +76,7 @@ class JobResult : private ThreadHelpBase
/**
an user of us must know, which (possible) parts of
- a "pure result" was realy set by an executed job.
+ a "pure result" was really set by an executed job.
Means which other members of this class are valid.
This mask can be used to find it out.
*/