diff options
author | Jan Holesovsky <kendy@suse.cz> | 2010-10-20 23:38:55 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 17:54:56 -0500 |
commit | 6b9e8540da1be0c1c954cdaafe129c8dadd3c001 (patch) | |
tree | 12010a6b196293ba077f55022e74b95e8702a943 | |
parent | f5aa85eec6557ca014b7db9835ca123c37c8a50a (diff) |
Fix typo: something->get; into something->get();
-rw-r--r-- | dbaccess/source/core/api/RowSetBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/RowSetBase.cxx b/dbaccess/source/core/api/RowSetBase.cxx index 28f104bbc..efb3320a5 100644 --- a/dbaccess/source/core/api/RowSetBase.cxx +++ b/dbaccess/source/core/api/RowSetBase.cxx @@ -274,7 +274,7 @@ const ORowSetValue& ORowSetBase::impl_getValue(sal_Int32 columnIndex) ORowSetMatrix::iterator k = aHelper.aIterator; for (; k != m_pCache->getEnd(); ++k) { - ORowSetValueVector* pTemp = k->get; + ORowSetValueVector* pTemp = k->get(); OSL_ENSURE( pTemp != (void*)0xfeeefeee,"HALT!" ); } #endif |