diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2018-11-10 17:34:31 +0100 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2018-11-10 23:11:28 +0100 |
commit | afbfe42e63cdba1a18c292d7eb4875009b0f19c0 (patch) | |
tree | 4d4feec02830008c898cc1cd4eff768f26efda84 /svx | |
parent | 41b09c0ed154aed0caf325a1ab0b7f7ffa688a35 (diff) |
clang-tidy: (WIP) bugprone-too-small-loop-variable findings 2
Change-Id: I1ddf3fe0e5fad265ae14712a23469b684253079d
Reviewed-on: https://gerrit.libreoffice.org/63241
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/fmcomp/fmgridif.cxx | 2 | ||||
-rw-r--r-- | svx/source/form/dataaccessdescriptor.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx index 6fcd0d790665..21e7f4a515e8 100644 --- a/svx/source/fmcomp/fmgridif.cxx +++ b/svx/source/fmcomp/fmgridif.cxx @@ -1596,7 +1596,7 @@ void FmXGridPeer::addColumnListeners(const Reference< XPropertySet >& xCol) // as not all properties have to be supported by all columns we have to check this // before adding a listener Reference< XPropertySetInfo > xInfo = xCol->getPropertySetInfo(); - for (unsigned i=0; i<SAL_N_ELEMENTS(aPropsListenedTo); ++i) + for (size_t i=0; i<SAL_N_ELEMENTS(aPropsListenedTo); ++i) { if ( xInfo->hasPropertyByName( aPropsListenedTo[i] ) ) { diff --git a/svx/source/form/dataaccessdescriptor.cxx b/svx/source/form/dataaccessdescriptor.cxx index f2b6a1b5711a..a5dc96a34e58 100644 --- a/svx/source/form/dataaccessdescriptor.cxx +++ b/svx/source/form/dataaccessdescriptor.cxx @@ -195,7 +195,7 @@ namespace svx { OUString("Selection"), DataAccessDescriptorProperty::Selection, } }; - for (unsigned i=0; i<SAL_N_ELEMENTS(s_aDescriptorProperties); ++i) + for (size_t i=0; i<SAL_N_ELEMENTS(s_aDescriptorProperties); ++i) s_aProperties[ s_aDescriptorProperties[i].maName ] = &s_aDescriptorProperties[i]; } |