diff options
author | Maciej Rumianowski <maciej.rumianowski@gmail.com> | 2011-08-07 16:46:17 +0200 |
---|---|---|
committer | Eike Rathke <erack@erack.de> | 2011-08-08 11:11:18 +0200 |
commit | c1be3dab3d37b74570b49d8534c4d2677a318286 (patch) | |
tree | 1f08bccd39732c2dca2248a3eba8f302b591b616 /cui | |
parent | 7ec5539950b5b8699c1d121932643573aed4a89e (diff) |
Replace SvULongs with vector and code clean up
Instead of SvULongs use std::vector<sal_uInt32>
replace sal_Bool with bool where variable is not interfering with return value
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/numfmt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx index 0295c32f93f3..8320b5db6f78 100644 --- a/cui/source/tabpages/numfmt.cxx +++ b/cui/source/tabpages/numfmt.cxx @@ -782,7 +782,7 @@ sal_Bool SvxNumberFormatTabPage::FillItemSet( SfxItemSet& rCoreAttrs ) // -------------------------------------------------------------- // List of changed user defined formats: // ------------------------------------- - const sal_uInt32 nDelCount = pNumFmtShell->GetUpdateDataCount(); + const size_t nDelCount = pNumFmtShell->GetUpdateDataCount(); if ( nDelCount > 0 ) { |