summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/browser
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/browser')
-rw-r--r--dbaccess/source/ui/browser/brwctrlr.cxx4
-rw-r--r--dbaccess/source/ui/browser/exsrcbrw.cxx2
-rw-r--r--dbaccess/source/ui/browser/formadapter.cxx2
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx2
-rw-r--r--dbaccess/source/ui/browser/sbamultiplex.cxx2
5 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx b/dbaccess/source/ui/browser/brwctrlr.cxx
index 8bbc09474704..4ba23fa758d6 100644
--- a/dbaccess/source/ui/browser/brwctrlr.cxx
+++ b/dbaccess/source/ui/browser/brwctrlr.cxx
@@ -884,7 +884,7 @@ void SbaXDataBrowserController::removeModelListeners(const Reference< XControlMo
if (xColumns.is())
{
sal_Int32 nCount = xColumns->getCount();
- for (sal_uInt16 i=0; i < nCount; ++i)
+ for (sal_Int32 i=0; i < nCount; ++i)
{
Reference< XPropertySet > xCol(xColumns->getByIndex(i),UNO_QUERY);
RemoveColumnListener(xCol);
@@ -2642,7 +2642,7 @@ void SbaXDataBrowserController::addColumnListeners(const Reference< ::com::sun::
if (xColumns.is())
{
sal_Int32 nCount = xColumns->getCount();
- for (sal_uInt16 i=0; i < nCount; ++i)
+ for (sal_Int32 i=0; i < nCount; ++i)
{
Reference< XPropertySet > xCol(xColumns->getByIndex(i),UNO_QUERY);
AddColumnListener(xCol);
diff --git a/dbaccess/source/ui/browser/exsrcbrw.cxx b/dbaccess/source/ui/browser/exsrcbrw.cxx
index 803237f43289..9630d4473565 100644
--- a/dbaccess/source/ui/browser/exsrcbrw.cxx
+++ b/dbaccess/source/ui/browser/exsrcbrw.cxx
@@ -218,7 +218,7 @@ void SAL_CALL SbaExternalSourceBrowser::dispatch(const ::com::sun::star::util::U
Reference< XRowSet > xMasterForm;
// search the arguments for the master form
- for (sal_uInt16 i=0; i<aArgs.getLength(); ++i, ++pArguments)
+ for (sal_Int32 i=0; i<aArgs.getLength(); ++i, ++pArguments)
{
if ( (pArguments->Name == "MasterForm") && (pArguments->Value.getValueTypeClass() == TypeClass_INTERFACE) )
{
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;
}
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index c2509dcd00cd..e7fbbd4bfcef 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -430,7 +430,7 @@ void SAL_CALL SbaXGridPeer::dispatch(const URL& aURL, const Sequence< PropertyVa
SolarMutexGuard aGuard;
sal_Int16 nColId = -1;
const PropertyValue* pArgs = aArgs.getConstArray();
- for (sal_uInt16 i=0; i<aArgs.getLength(); ++i, ++pArgs)
+ for (sal_Int32 i=0; i<aArgs.getLength(); ++i, ++pArgs)
{
if (pArgs->Name == "ColumnViewPos")
{
diff --git a/dbaccess/source/ui/browser/sbamultiplex.cxx b/dbaccess/source/ui/browser/sbamultiplex.cxx
index 815f6745aff8..4f8bbe0a6933 100644
--- a/dbaccess/source/ui/browser/sbamultiplex.cxx
+++ b/dbaccess/source/ui/browser/sbamultiplex.cxx
@@ -86,7 +86,7 @@ void SbaXPropertiesChangeMultiplexer::propertiesChange(const ::com::sun::star::u
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyChangeEvent> aMulti(aEvts);
::com::sun::star::beans::PropertyChangeEvent* pMulti = aMulti.getArray();
- for (sal_uInt16 i=0; i<aMulti.getLength(); ++i, ++pMulti)
+ for (sal_Int32 i=0; i<aMulti.getLength(); ++i, ++pMulti)
pMulti->Source = &m_rParent;
::cppu::OInterfaceIteratorHelper aIt(*this);