diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-05-17 09:53:33 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-05-19 14:05:16 +0200 |
commit | 4f214b2b42dafe059f5bb4601ab4cbfac5a6934e (patch) | |
tree | c801ccf9a84d4842629331957b536cc7462fc707 /connectivity | |
parent | 10e03ade8fc9ee78b99f4f24bf962d968ffee346 (diff) |
connectivity::file::OResultSet remove totally unused data member
Change-Id: I5c4b2d72b600c8ce9de070dc82bf489d66144342
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/file/FResultSet.cxx | 1 | ||||
-rw-r--r-- | connectivity/source/inc/file/FResultSet.hxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/connectivity/source/drivers/file/FResultSet.cxx b/connectivity/source/drivers/file/FResultSet.cxx index 555ac12f46de..fbd87a32406f 100644 --- a/connectivity/source/drivers/file/FResultSet.cxx +++ b/connectivity/source/drivers/file/FResultSet.cxx @@ -99,7 +99,6 @@ OResultSet::OResultSet(OStatement_Base* pStmt,OSQLParseTreeIterator& _aSQLIte ,m_nFilePos(0) ,m_nLastVisitedPos(-1) ,m_nRowCountResult(-1) - ,m_nCurrentPosition(0) ,m_nColumnCount(0) ,m_bWasNull(sal_False) ,m_bEOF(sal_False) diff --git a/connectivity/source/inc/file/FResultSet.hxx b/connectivity/source/inc/file/FResultSet.hxx index fe60f07e4bf7..7c55d2f9ecff 100644 --- a/connectivity/source/inc/file/FResultSet.hxx +++ b/connectivity/source/inc/file/FResultSet.hxx @@ -125,7 +125,6 @@ namespace connectivity sal_Int32 m_nFilePos; sal_Int32 m_nLastVisitedPos; sal_Int32 m_nRowCountResult; - sal_Int32 m_nCurrentPosition; // current position of the resultset is returned when ask for getRow() sal_Int32 m_nColumnCount; sal_Bool m_bWasNull; sal_Bool m_bEOF; // after last record |