diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-05-17 09:46:28 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-05-19 14:05:16 +0200 |
commit | 10e03ade8fc9ee78b99f4f24bf962d968ffee346 (patch) | |
tree | 225fc12f656c6f2a86d8553605d9eacf1a4ce1df /connectivity/source | |
parent | 89001143ea5aeecf8af1b62748431dc785369f44 (diff) |
janitorial: typos in comments
Change-Id: I6fbd522e796a8f1b6c13136f65bda11c19ffbda4
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/commontools/TSkipDeletedSet.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/commontools/TSkipDeletedSet.cxx b/connectivity/source/commontools/TSkipDeletedSet.cxx index cc25b3fd4a7e..a0304c55b890 100644 --- a/connectivity/source/commontools/TSkipDeletedSet.cxx +++ b/connectivity/source/commontools/TSkipDeletedSet.cxx @@ -54,7 +54,7 @@ sal_Bool OSkipDeletedSet::skipDeleted(IResultSetHelper::Movement _eCursorPositio nDelOffset = 1; break; case IResultSetHelper::LAST: - eDelPosition = IResultSetHelper::PRIOR; // lsat row is invalid so position before + eDelPosition = IResultSetHelper::PRIOR; // last row is invalid so position before nDelOffset = 1; break; case IResultSetHelper::RELATIVE: @@ -89,7 +89,7 @@ sal_Bool OSkipDeletedSet::skipDeleted(IResultSetHelper::Movement _eCursorPositio } - // and than move forward until we are after the last row + // and then move forward until we are after the last row while(bDataFound) { bDataFound = m_pHelper->move(IResultSetHelper::NEXT, 1, sal_False); // we don't need the data here |