diff options
author | Ocke.Janssen <Ocke.Janssen@oracle.com> | 2010-11-24 14:23:06 +0100 |
---|---|---|
committer | Ocke.Janssen <Ocke.Janssen@oracle.com> | 2010-11-24 14:23:06 +0100 |
commit | f02f6f9203902f788e2e7e39335b016a4a2fa0f7 (patch) | |
tree | 3b9c4b00e9be64bb769590f36d969b3a6cc14a4f /dbaccess/source/core/api/StaticSet.hxx | |
parent | 51f78b61b8f481ed9602394651632926c41b9a0e (diff) |
dba34b: #i111542# fix for max rows
Diffstat (limited to 'dbaccess/source/core/api/StaticSet.hxx')
-rw-r--r-- | dbaccess/source/core/api/StaticSet.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/api/StaticSet.hxx b/dbaccess/source/core/api/StaticSet.hxx index 794623c07..82f122086 100644 --- a/dbaccess/source/core/api/StaticSet.hxx +++ b/dbaccess/source/core/api/StaticSet.hxx @@ -44,8 +44,8 @@ namespace dbaccess sal_Bool fetchRow(); void fillAllRows(); public: - OStaticSet() - : m_aSetIter(m_aSet.end()) + OStaticSet(sal_Int32 i_nMaxRows) : OCacheSet(i_nMaxRows) + , m_aSetIter(m_aSet.end()) , m_bEnd(sal_False) { m_aSet.push_back(NULL); // this is the beforefirst record |