diff options
Diffstat (limited to 'svx/source/items/numfmtsh.cxx')
-rw-r--r-- | svx/source/items/numfmtsh.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/items/numfmtsh.cxx b/svx/source/items/numfmtsh.cxx index ceb5dfbe6b44..e4d86feb13f4 100644 --- a/svx/source/items/numfmtsh.cxx +++ b/svx/source/items/numfmtsh.cxx @@ -1566,7 +1566,7 @@ sal_uInt16 SvxNumberFormatShell::FindCurrencyFormat( const OUString& rFmtString { nStart=nCount; } - for(sal_uInt16 j=nStart;j<aCurCurrencyList.size();j++) + for(size_t j=nStart;j<aCurCurrencyList.size();j++) { if(aCurCurrencyList[j]==nPos) return j; } @@ -1649,7 +1649,7 @@ sal_uInt16 SvxNumberFormatShell::FindCurrencyFormat(const NfCurrencyEntry* pTmpC { nStart=nCount; } - for(sal_uInt16 j=nStart;j<aCurCurrencyList.size();j++) + for(size_t j=nStart;j<aCurCurrencyList.size();j++) { if(aCurCurrencyList[j]==nPos) return j; } @@ -1677,7 +1677,7 @@ bool SvxNumberFormatShell::IsInTable(sal_uInt16 const nPos, pFormatter->GetCurrencyFormatStrings( aWSStringsDtor, *pTmpCurrencyEntry, bTmpBanking ); - for(sal_uInt16 i=0;i<aWSStringsDtor.size();i++) + for(size_t i=0;i<aWSStringsDtor.size();i++) { if (aWSStringsDtor[i] == rFmtString) { |