summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/RowSetCache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/core/api/RowSetCache.cxx')
-rw-r--r--dbaccess/source/core/api/RowSetCache.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/dbaccess/source/core/api/RowSetCache.cxx b/dbaccess/source/core/api/RowSetCache.cxx
index 12f6e245e514..6180522ff72b 100644
--- a/dbaccess/source/core/api/RowSetCache.cxx
+++ b/dbaccess/source/core/api/RowSetCache.cxx
@@ -687,7 +687,7 @@ bool ORowSetCache::isLast( )
return m_nPosition == m_nRowCount;
}
-bool ORowSetCache::beforeFirst( )
+void ORowSetCache::beforeFirst( )
{
if(!m_bBeforeFirst)
{
@@ -698,10 +698,9 @@ bool ORowSetCache::beforeFirst( )
moveWindow();
m_aMatrixIter = m_pMatrix->end();
}
- return true;
}
-bool ORowSetCache::afterLast( )
+void ORowSetCache::afterLast( )
{
if(!m_bAfterLast)
{
@@ -719,7 +718,6 @@ bool ORowSetCache::afterLast( )
m_nPosition = 0;
m_aMatrixIter = m_pMatrix->end();
}
- return true;
}
bool ORowSetCache::fillMatrix(sal_Int32& _nNewStartPos, sal_Int32 &_nNewEndPos)