summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/browser/formadapter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/browser/formadapter.cxx')
-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 5b2fbb54c2e9..a8da57849df5 100644
--- a/dbaccess/source/ui/browser/formadapter.cxx
+++ b/dbaccess/source/ui/browser/formadapter.cxx
@@ -1338,7 +1338,7 @@ Sequence< ::com::sun::star::beans::PropertyState> SAL_CALL SbaXFormAdapter::getP
// set them all to DEFAULT
Sequence< ::com::sun::star::beans::PropertyState> aReturn(aPropertyName.getLength());
::com::sun::star::beans::PropertyState* pStates = aReturn.getArray();
- for (sal_uInt16 i=0; i<aPropertyName.getLength(); ++i, ++pStates)
+ for (sal_Int32 i=0; i<aPropertyName.getLength(); ++i, ++pStates)
*pStates = ::com::sun::star::beans::PropertyState_DEFAULT_VALUE;
return aReturn;
}