summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-27 17:25:24 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-28 10:21:08 +0200
commit56a2bc14b5ca23e26b33b3c55a026b81bbeb244b (patch)
tree203d92713b3640944d3727b96e80e59a694113f8 /dbaccess
parent4bece188f175d9792611e9f07875ca7739a44c60 (diff)
css.sdbc.XResultSet.getRow return type is long
Change-Id: I764a88f110f5528cabc1e223ffc63079954c534f
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/browser/formadapter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/browser/formadapter.cxx b/dbaccess/source/ui/browser/formadapter.cxx
index c1d9cf03010f..54ef47614cfc 100644
--- a/dbaccess/source/ui/browser/formadapter.cxx
+++ b/dbaccess/source/ui/browser/formadapter.cxx
@@ -631,7 +631,7 @@ sal_Int32 SAL_CALL SbaXFormAdapter::getRow() throw( ::com::sun::star::sdbc::SQLE
{
if (m_xMainForm.is())
return m_xMainForm->getRow();
- return sal_False;
+ return 0;
}
sal_Bool SAL_CALL SbaXFormAdapter::absolute(sal_Int32 row) throw( ::com::sun::star::sdbc::SQLException, RuntimeException, std::exception )