From 17f9aa97f8753b895db30e8080481f5f6d696b82 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Tue, 10 Sep 2019 10:37:56 +0200 Subject: Fix typos Change-Id: I4671d0f13e67b1272fd7c24bb6a2a7679c75f20b Reviewed-on: https://gerrit.libreoffice.org/78797 Tested-by: Jenkins Reviewed-by: Julien Nabet --- framework/source/helper/ocomponentenumeration.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/source') 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(m_seqComponents.size()) ); } -- cgit