summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-09-26 17:22:56 +0200
committerJulien Nabet <serval2412@yahoo.fr>2017-09-26 21:05:22 +0200
commit2f066d6aabbc2a3f78416e4fd66e252b7379fb72 (patch)
tree606778ef051d81179a5712ef0e7b6da339dd832b
parent3b27fa90814aecffe35e6b2214894c783c5d10a1 (diff)
Fix typos
Change-Id: I9aaefa47399f35d563c1a4df364512dd29db41ce Reviewed-on: https://gerrit.libreoffice.org/42817 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/vcl/svapp.hxx2
-rw-r--r--sw/source/core/edit/edfcol.cxx4
-rw-r--r--vcl/README.scheduler2
3 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx
index 298fb61c1cfd..5624494414f8 100644
--- a/include/vcl/svapp.hxx
+++ b/include/vcl/svapp.hxx
@@ -466,7 +466,7 @@ public:
/** Attempt to process current pending event(s)
It doesn't sleep if no events are available for processing.
- This doesn't processs any events generated after invoking the function.
+ This doesn't process any events generated after invoking the function.
So in contrast to Scheduler::ProcessEventsToIdle, this cannot become
busy-locked by an event-generating event in the event queue.
diff --git a/sw/source/core/edit/edfcol.cxx b/sw/source/core/edit/edfcol.cxx
index d696fe02eaa3..f383a0a035b9 100644
--- a/sw/source/core/edit/edfcol.cxx
+++ b/sw/source/core/edit/edfcol.cxx
@@ -1004,7 +1004,7 @@ void SwUndoParagraphSigning::Insert()
m_pDoc->GetIDocumentUndoRedo().DoUndo(false);
// Prevent validation since this will trigger a premature validation
- // upon inserting, but before seting the metadata.
+ // upon inserting, but before setting the metadata.
SwEditShell* pEditSh = m_pDoc->GetEditShell();
const bool bOldValidationFlag = pEditSh->SetParagraphSignatureValidation(false);
comphelper::ScopeGuard const g([&] () {
@@ -1075,7 +1075,7 @@ void SwEditShell::SignParagraph()
// 4. Add metadata
// Prevent validation since this will trigger a premature validation
- // upon inserting, but before seting the metadata.
+ // upon inserting, but before setting the metadata.
const bool bOldValidationFlag = SetParagraphSignatureValidation(false);
comphelper::ScopeGuard const g([this, bOldValidationFlag] () {
SetParagraphSignatureValidation(bOldValidationFlag);
diff --git a/vcl/README.scheduler b/vcl/README.scheduler
index 77917daedfb6..7e0d6ca8b467 100644
--- a/vcl/README.scheduler
+++ b/vcl/README.scheduler
@@ -276,5 +276,5 @@ priority idle in the event loop.
A few layers of indirection make this code hard to follow. The SalXLib::Yield
and SalX11Display::Yield architecture makes it impossible to process just the
-current events. This really needs a refactorung and rearchitecture step, which
+current events. This really needs a refactoring and rearchitecture step, which
will also affect the Gtk+ and KDE4 backend for the user event handling.