diff options
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/inc/ucbhelper/resultset.hxx | 4 | ||||
-rw-r--r-- | ucbhelper/source/provider/resultset.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ucbhelper/inc/ucbhelper/resultset.hxx b/ucbhelper/inc/ucbhelper/resultset.hxx index 3c6c7e5e46a0..68ec9bcbb082 100644 --- a/ucbhelper/inc/ucbhelper/resultset.hxx +++ b/ucbhelper/inc/ucbhelper/resultset.hxx @@ -462,7 +462,7 @@ public: queryContentIdentifier( sal_uInt32 nIndex ) = 0; /** - * This method returns the the content at the specified index. + * This method returns the content at the specified index. * * @param nIndex is the zero-based index within the logical data array * of the supplier; must be non-negative. @@ -512,7 +512,7 @@ public: * The implementation should call m_pResultSet->rowCountFinal(...) if * it has inserted all entries in its logical result array. * - * @return true, if the the value returned by currentCount() won't change + * @return true, if the value returned by currentCount() won't change anymore. */ virtual sal_Bool isCountFinal() = 0; diff --git a/ucbhelper/source/provider/resultset.cxx b/ucbhelper/source/provider/resultset.cxx index 9bc380748c62..77409602b7df 100644 --- a/ucbhelper/source/provider/resultset.cxx +++ b/ucbhelper/source/provider/resultset.cxx @@ -632,7 +632,7 @@ sal_Bool SAL_CALL ResultSet::relative( sal_Int32 rows ) { /* Attempting to move beyond the first/last row in the result set - positions the cursor before/after the the first/last row. + positions the cursor before/after the first/last row. Calling relative( 0 ) is valid, but does not change the cursor position. |