diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-02-02 16:28:50 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-02-03 22:56:54 +0100 |
commit | c25ebf75e0628c660b1e051a863429b9e5320acc (patch) | |
tree | 24f063e4d6aedb1e91c78fe86166eb217fa578e8 /svtools | |
parent | 3228cb2094d3013822534d0ce894c5097e4869f9 (diff) |
MultiSelection::GetRangeCount() returns size_t
Change-Id: Ief072cef486556c9b43364e108a021510781f7c6
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/brwbox/brwbox3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/brwbox/brwbox3.cxx b/svtools/source/brwbox/brwbox3.cxx index 6facb704f34b..ea8a201ff086 100644 --- a/svtools/source/brwbox/brwbox3.cxx +++ b/svtools/source/brwbox/brwbox3.cxx @@ -511,8 +511,8 @@ void BrowseBox::GetAllSelectedColumns( ::com::sun::star::uno::Sequence< sal_Int3 _rColumns.realloc( nCount ); sal_Int32 nIndex = 0; - sal_uInt32 nRangeCount = pColumnSel->GetRangeCount(); - for( sal_uInt32 nRange = 0; nRange < nRangeCount; ++nRange ) + const size_t nRangeCount = pColumnSel->GetRangeCount(); + for( size_t nRange = 0; nRange < nRangeCount; ++nRange ) { const Range& rRange = pColumnSel->GetRange( nRange ); // loop has to include aRange.Max() |