summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-10 10:37:56 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-10 11:58:13 +0200
commit17f9aa97f8753b895db30e8080481f5f6d696b82 (patch)
tree42be86b7172cecb7986e13ce53c905c4a563894a /framework/source
parentfce010450534e6992345f5df7b9d9665befb7c6e (diff)
Fix typos
Change-Id: I4671d0f13e67b1272fd7c24bb6a2a7679c75f20b Reviewed-on: https://gerrit.libreoffice.org/78797 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/helper/ocomponentenumeration.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/helper/ocomponentenumeration.cxx b/framework/source/helper/ocomponentenumeration.cxx
index 5e374dc4d17e..76622c93bb6b 100644
--- a/framework/source/helper/ocomponentenumeration.cxx
+++ b/framework/source/helper/ocomponentenumeration.cxx
@@ -66,7 +66,7 @@ sal_Bool SAL_CALL OComponentEnumeration::hasMoreElements()
// First position in a valid list is 0.
// => The last one is getLength() - 1!
// m_nPosition's current value is the position for the next element, which will be return, if user call "nextElement()"
- // => We have more elements if current position less then the length of the list!
+ // => We have more elements if current position less than the length of the list!
return ( m_nPosition < static_cast<sal_uInt32>(m_seqComponents.size()) );
}