summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/src/cstringiterator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'NxWidgets/libnxwidgets/src/cstringiterator.cxx')
-rw-r--r--NxWidgets/libnxwidgets/src/cstringiterator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/NxWidgets/libnxwidgets/src/cstringiterator.cxx b/NxWidgets/libnxwidgets/src/cstringiterator.cxx
index 2327af38f..ed7cad704 100644
--- a/NxWidgets/libnxwidgets/src/cstringiterator.cxx
+++ b/NxWidgets/libnxwidgets/src/cstringiterator.cxx
@@ -70,7 +70,7 @@
/****************************************************************************
* Included Files
****************************************************************************/
-
+
#include <nuttx/config.h>
#include <stdint.h>
@@ -132,7 +132,7 @@ bool CStringIterator::moveToLast(void)
int length = m_pString->getLength();
if (length > 0)
{
- m_pCurrentChar = m_pString->getCharArray() + length - 1;
+ m_pCurrentChar = m_pString->getCharArray() + length - 1;
m_currentIndex = length - 1;
return true;
}
@@ -154,7 +154,7 @@ bool CStringIterator::moveToNext(void)
m_currentIndex++;
return true;
}
-
+
return false;
}