From c1be3dab3d37b74570b49d8534c4d2677a318286 Mon Sep 17 00:00:00 2001 From: Maciej Rumianowski Date: Sun, 7 Aug 2011 16:46:17 +0200 Subject: Replace SvULongs with vector and code clean up Instead of SvULongs use std::vector replace sal_Bool with bool where variable is not interfering with return value --- cui/source/tabpages/numfmt.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cui/source') 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 ) { -- cgit