summaryrefslogtreecommitdiff
path: root/framework/inc
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-11-13 00:20:20 +0100
committerMark Page <aptitude@btconnect.com>2017-11-13 08:43:17 +0100
commitd71bcc4dc5025ea24944454908098269cfd095a3 (patch)
tree4e0e21223c2b7fc157b840d2c717eb1dd1ba7942 /framework/inc
parent930efab3be7dd818918b7116119bb049acdcda76 (diff)
Fix typos
Change-Id: Ia544298334364ece3b3963a4adc00c5e01189b91 Reviewed-on: https://gerrit.libreoffice.org/44654 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mark Page <aptitude@btconnect.com>
Diffstat (limited to 'framework/inc')
-rw-r--r--framework/inc/dispatch/closedispatcher.hxx2
-rw-r--r--framework/inc/helper/ocomponentaccess.hxx2
-rw-r--r--framework/inc/jobs/job.hxx2
-rw-r--r--framework/inc/jobs/shelljob.hxx4
-rw-r--r--framework/inc/services/desktop.hxx6
-rw-r--r--framework/inc/threadhelp/transactionbase.hxx2
6 files changed, 9 insertions, 9 deletions
diff --git a/framework/inc/dispatch/closedispatcher.hxx b/framework/inc/dispatch/closedispatcher.hxx
index 8cbda9de0a7e..ff340e981aea 100644
--- a/framework/inc/dispatch/closedispatcher.hxx
+++ b/framework/inc/dispatch/closedispatcher.hxx
@@ -162,7 +162,7 @@ class CloseDispatcher : public ::cppu::WeakImplHelper<
/** @short prepare m_xCloseFrame so it should be closeable without problems.
- @descr Thats needed to be sure, that the document can't disagree
+ @descr That's needed to be sure, that the document can't disagree
later with e.g. an office termination.
The problem: Closing of documents can show UI. If the user
ignores it and open/close other documents, we can't know
diff --git a/framework/inc/helper/ocomponentaccess.hxx b/framework/inc/helper/ocomponentaccess.hxx
index dc8afa0c1774..60b33b2d3013 100644
--- a/framework/inc/helper/ocomponentaccess.hxx
+++ b/framework/inc/helper/ocomponentaccess.hxx
@@ -120,7 +120,7 @@ class OComponentAccess : public ::cppu::WeakImplHelper< css::container::XEnum
@descr This method destruct an instance of this class and clear some member.
Don't use an instance of this class as normal member. Use it dynamicly with a pointer.
We hold a weakreference to our owner and not to our superclass!
- Thats the reason for a protected dtor.
+ That's the reason for a protected dtor.
@seealso class Desktop
*//*-*****************************************************************************************************/
diff --git a/framework/inc/jobs/job.hxx b/framework/inc/jobs/job.hxx
index 8481064bb9a8..d3a8707a0f11 100644
--- a/framework/inc/jobs/job.hxx
+++ b/framework/inc/jobs/job.hxx
@@ -137,7 +137,7 @@ class Job : public ::cppu::WeakImplHelper<
/**
Holds the state, if we are listen for desktop/frame or model closing events or not.
The used references are not really enough to detect a valid listener connection.
- Thats why we use this additional information here too.
+ That's why we use this additional information here too.
*/
bool m_bListenOnDesktop;
bool m_bListenOnFrame;
diff --git a/framework/inc/jobs/shelljob.hxx b/framework/inc/jobs/shelljob.hxx
index 0ad5e938a639..921ce93fd3f9 100644
--- a/framework/inc/jobs/shelljob.hxx
+++ b/framework/inc/jobs/shelljob.hxx
@@ -117,8 +117,8 @@ class ShellJob : public ::cppu::WeakImplHelper< css::lang::XServiceInfo,css::tas
@param bCheckExitCode
bind the execution result to the exit code of the started process.
- If it's set to false we return false only in case executable couldnt be found
- or couldnt be started.
+ If it's set to false we return false only in case executable couldn't be found
+ or couldn't be started.
@return sal_True if command was executed successfully; sal_False otherwise.
*/
diff --git a/framework/inc/services/desktop.hxx b/framework/inc/services/desktop.hxx
index bdcd42271de2..58a8be553c8a 100644
--- a/framework/inc/services/desktop.hxx
+++ b/framework/inc/services/desktop.hxx
@@ -189,8 +189,8 @@ class Desktop : private cppu::BaseMutex,
@descr Additional to removing normal listener these method was implemented special.
Every listener will be asked for its uno implementation name.
- Some of them are well known ... and the corresponding listener was set as special member.
- Now those special member will be reseted also.
+ Some of them are well known... and the corresponding listener was set as special member.
+ Now those special member will be reset also.
see e.g. member m_xSfxTerminator
@seealso terminate()
@@ -413,7 +413,7 @@ class Desktop : private cppu::BaseMutex,
/** special terminate listener shown inside system tray (quick starter)
* Will hinder the office on shutdown ... but wish to allow closing
- * of open documents. And because thats different to a normal terminate listener
+ * of open documents. And because that's different to a normal terminate listener
* it has to be handled special .-)
*/
css::uno::Reference< css::frame::XTerminateListener > m_xQuickLauncher;
diff --git a/framework/inc/threadhelp/transactionbase.hxx b/framework/inc/threadhelp/transactionbase.hxx
index 71e4195dedd4..236a0c7c04e6 100644
--- a/framework/inc/threadhelp/transactionbase.hxx
+++ b/framework/inc/threadhelp/transactionbase.hxx
@@ -29,7 +29,7 @@ namespace framework{
@descr If you use a transaction manager as a member of your class and wish to use it earlier then other ones
you should have a look on this implementation. You must use it as the first base class
of your implementation - because base classes are initialized by his order and before your
- member! Thats why is a good place to declare this member.
+ member! That's why is a good place to declare this member.
@devstatus ready to use
*//*-*************************************************************************************************************/
struct TransactionBase