summaryrefslogtreecommitdiff
path: root/reportdesign/source/ui/report/propbrw.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/source/ui/report/propbrw.cxx')
-rw-r--r--reportdesign/source/ui/report/propbrw.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/source/ui/report/propbrw.cxx b/reportdesign/source/ui/report/propbrw.cxx
index 5534b5143cf9..bd7be0fe74c2 100644
--- a/reportdesign/source/ui/report/propbrw.cxx
+++ b/reportdesign/source/ui/report/propbrw.cxx
@@ -280,11 +280,11 @@ bool PropBrw::Close()
uno::Sequence< Reference<uno::XInterface> > PropBrw::CreateCompPropSet(const SdrMarkList& _rMarkList)
{
- sal_uInt32 nMarkCount = _rMarkList.GetMarkCount();
+ const size_t nMarkCount = _rMarkList.GetMarkCount();
::std::vector< uno::Reference< uno::XInterface> > aSets;
aSets.reserve(nMarkCount);
- for(sal_uInt32 i=0;i<nMarkCount;++i)
+ for(size_t i=0; i<nMarkCount; ++i)
{
SdrObject* pCurrent = _rMarkList.GetMark(i)->GetMarkedSdrObj();