summaryrefslogtreecommitdiff
path: root/framework/inc
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2014-11-10 15:05:25 +0100
committerNoel Grandin <noelgrandin@gmail.com>2014-11-12 11:04:11 +0000
commitda40cac540e7d735edbe9069b3c8ec6af4530208 (patch)
treef2abda7281129e13f588c77b18780a7090c8405f /framework/inc
parentbb437029c1e5331bcc3f8fb2fc87837142a52f33 (diff)
Fix common typos. No automatic tools. Handmade…
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'framework/inc')
-rw-r--r--framework/inc/dispatch/closedispatcher.hxx6
-rw-r--r--framework/inc/dispatch/oxt_handler.hxx2
-rw-r--r--framework/inc/helper/vclstatusindicator.hxx2
-rw-r--r--framework/inc/jobs/job.hxx2
-rw-r--r--framework/inc/services/desktop.hxx4
-rw-r--r--framework/inc/threadhelp/gate.hxx2
-rw-r--r--framework/inc/threadhelp/transactionguard.hxx2
7 files changed, 10 insertions, 10 deletions
diff --git a/framework/inc/dispatch/closedispatcher.hxx b/framework/inc/dispatch/closedispatcher.hxx
index dfbf6bf6eca2..192e2e8ffd1e 100644
--- a/framework/inc/dispatch/closedispatcher.hxx
+++ b/framework/inc/dispatch/closedispatcher.hxx
@@ -198,8 +198,8 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2<
before (e.g. by calling implts_closeView()!
Otherwise e.g. the XController->suspend()
- call isnt made and no UI warn the user about
- loosing document changes. Because the
+ call is not made and no UI warn the user about
+ losing document changes. Because the
frame is closed ....
@return [bool]
@@ -218,7 +218,7 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2<
/** @short calls XDesktop->terminate().
@descr No office code has to be called
- afterwards! Because the process is dieing ...
+ afterwards! Because the process is dying...
The only exception is a might be registered
listener at this instance here.
Because he should know, that such things will happen :-)
diff --git a/framework/inc/dispatch/oxt_handler.hxx b/framework/inc/dispatch/oxt_handler.hxx
index b32a53e21c68..999c2ddb06c3 100644
--- a/framework/inc/dispatch/oxt_handler.hxx
+++ b/framework/inc/dispatch/oxt_handler.hxx
@@ -102,7 +102,7 @@ class Oxt_Handler : public ::cppu::WeakImplHelper3<
osl::Mutex m_mutex;
css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory; /// global uno service factory to create new services
- css::uno::Reference< css::uno::XInterface > m_xSelfHold; /// we must protect us against dieing during async(!) dispatch() call!
+ css::uno::Reference< css::uno::XInterface > m_xSelfHold; /// we must protect us against dying during async(!) dispatch() call!
css::uno::Reference< css::frame::XDispatchResultListener > m_xListener;
}; // class Oxt_Handler
diff --git a/framework/inc/helper/vclstatusindicator.hxx b/framework/inc/helper/vclstatusindicator.hxx
index 634c66a5b1f5..4a68b79d8271 100644
--- a/framework/inc/helper/vclstatusindicator.hxx
+++ b/framework/inc/helper/vclstatusindicator.hxx
@@ -48,7 +48,7 @@ class VCLStatusIndicator : public ::cppu::WeakImplHelper1< css::task::XStatusIn
/** shows the progress.
- @attention This member isnt synchronized using our own mutex!
+ @attention This member is not synchronized using our own mutex!
Its guarded by the solarmutex only. Otherwise
we have to lock two of them, which can force a deadlock ...
*/
diff --git a/framework/inc/jobs/job.hxx b/framework/inc/jobs/job.hxx
index 6b5ff39c9b1d..7f01fec6a0b5 100644
--- a/framework/inc/jobs/job.hxx
+++ b/framework/inc/jobs/job.hxx
@@ -158,7 +158,7 @@ class Job : public ::cppu::WeakImplHelper3<
indicates in which state the internal job currently exist.
We can use this information to throw any suitable veto exception
- to prevent the environment against dieing or suppress superflous dispose()
+ to prevent the environment against dying or suppress superflous dispose()
calls at the job.
*/
ERunState m_eRunState;
diff --git a/framework/inc/services/desktop.hxx b/framework/inc/services/desktop.hxx
index 19a6df5800f9..40d349ceefab 100644
--- a/framework/inc/services/desktop.hxx
+++ b/framework/inc/services/desktop.hxx
@@ -385,7 +385,7 @@ class Desktop : private cppu::BaseMutex,
bool impl_closeFrames(bool bAllowUI);
// debug methods
- // (should be private everytime!)
+ // (should be private every time!)
private:
@@ -396,7 +396,7 @@ class Desktop : private cppu::BaseMutex,
/// see dispose() for further information!
// variables
- // (should be private everytime!)
+ // (should be private every time!)
private:
diff --git a/framework/inc/threadhelp/gate.hxx b/framework/inc/threadhelp/gate.hxx
index 04c6ce72745d..422d629a2df8 100644
--- a/framework/inc/threadhelp/gate.hxx
+++ b/framework/inc/threadhelp/gate.hxx
@@ -35,7 +35,7 @@ namespace framework{
As a special feature you can open the gate a little bit by sing openGap().
Then all currently waiting threads are running immediately - but new ones are blocked!
- @attention To prevent us against wrong using, the default ctor, copy ctor and the =operator are maked private!
+ @attention To prevent us against wrong using, the default ctor, copy ctor and the =operator are marked private!
@implements IGate
@base IGate
diff --git a/framework/inc/threadhelp/transactionguard.hxx b/framework/inc/threadhelp/transactionguard.hxx
index 81930e2683c7..83cc30150193 100644
--- a/framework/inc/threadhelp/transactionguard.hxx
+++ b/framework/inc/threadhelp/transactionguard.hxx
@@ -35,7 +35,7 @@ namespace framework{
It's possible too, to enable automatically throwing of some exceptions for illegal
transaction requests ... e.g. interface call for already disposed objects.
- @attention To prevent us against wrong using, the default ctor, copy ctor and the =operator are maked private!
+ @attention To prevent us against wrong using, the default ctor, copy ctor and the =operator are marked private!
@devstatus draft
*//*-*************************************************************************************************************/
class TransactionGuard : private boost::noncopyable