summaryrefslogtreecommitdiff
path: root/forms
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 /forms
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 'forms')
-rw-r--r--forms/source/component/EventThread.cxx2
-rw-r--r--forms/source/component/GroupManager.cxx2
-rw-r--r--forms/source/component/ImageControl.cxx4
-rw-r--r--forms/source/component/ListBox.cxx2
-rw-r--r--forms/source/xforms/NameContainer.hxx2
5 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/component/EventThread.cxx b/forms/source/component/EventThread.cxx
index ac891c553efa..8e09f47d68a2 100644
--- a/forms/source/component/EventThread.cxx
+++ b/forms/source/component/EventThread.cxx
@@ -191,7 +191,7 @@ void OComponentEventThread::run()
{
MutexRelease aReleaseOnce(m_aMutex);
- // Because a queryHardRef can throw an Exception, it shoudln't be called when
+ // Because a queryHardRef can throw an Exception, it should not be called when
// the mutex is locked.
Reference<XControl> xControl;
if ( xControlAdapter.is() )
diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx
index d25a6db85edb..8f6a40f2bfc4 100644
--- a/forms/source/component/GroupManager.cxx
+++ b/forms/source/component/GroupManager.cxx
@@ -165,7 +165,7 @@ void OGroup::RemoveComponent( const Reference<XPropertySet>& rxElement )
/*
* By removing the GroupComp the insertion position has become invalid.
- * We do not to change it here, however, because its passed on continously
+ * We do not to change it here, however, because its passed on continuously
* and ascending distinctively.
*/
}
diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx
index 193d69b2bf43..22d2c5aedf4d 100644
--- a/forms/source/component/ImageControl.cxx
+++ b/forms/source/component/ImageControl.cxx
@@ -791,8 +791,8 @@ void OImageControlControl::implClearGraphics( bool _bForce )
// the ImageURL is already empty, so simply setting a new empty one would not suffice
// (since it would be ignored)
xSet->setPropertyValue( PROPERTY_IMAGE_URL, makeAny( OUString( "private:emptyImage" ) ) );
- // (the concrete URL we're passing here doens't matter. It's important that
- // the model cannot resolve it to a a valid resource describing an image stream
+ // (the concrete URL we're passing here doesn't matter. It's important that
+ // the model cannot resolve it to a valid resource describing an image stream
}
xSet->setPropertyValue( PROPERTY_IMAGE_URL, makeAny( OUString() ) );
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 2d42a979432c..11de5a7dcdf6 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -1496,7 +1496,7 @@ namespace frm
{
Any aReturn;
- // by definition, multiple selected entries are transfered as NULL if the
+ // by definition, multiple selected entries are transferred as NULL if the
// binding does not support string lists
if ( _rSelectSequence.getLength() <= 1 )
{
diff --git a/forms/source/xforms/NameContainer.hxx b/forms/source/xforms/NameContainer.hxx
index f1a473f2e1f2..7d1b63bece01 100644
--- a/forms/source/xforms/NameContainer.hxx
+++ b/forms/source/xforms/NameContainer.hxx
@@ -61,7 +61,7 @@ protected:
T getItem( const OUString& rName )
{
- OSL_ENSURE( hasItem( rName ), "can't get non-existant item" );
+ OSL_ENSURE( hasItem( rName ), "can't get non-existent item" );
return maItems[ rName ];
}