diff options
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/RowSetCache.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/api/RowSetCache.hxx b/dbaccess/source/core/api/RowSetCache.hxx index 86bb8ccfe355..c623d3481344 100644 --- a/dbaccess/source/core/api/RowSetCache.hxx +++ b/dbaccess/source/core/api/RowSetCache.hxx @@ -174,8 +174,8 @@ namespace dbaccess // css::sdbc::XResultSet bool next( ); - bool isBeforeFirst( ) { return m_bBeforeFirst;} - bool isAfterLast( ) { return m_bAfterLast;} + bool isBeforeFirst( ) const { return m_bBeforeFirst;} + bool isAfterLast( ) const { return m_bAfterLast;} bool isFirst( ); bool isLast( ); bool beforeFirst( ); |