From 76ff6453eee84d22f8037ec423b95d40edd10ca0 Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Thu, 24 Apr 2014 23:57:22 +0200 Subject: sal_uInt16 to size_t Change-Id: I9928d07c33cdd2b79a48990b0430c314c9ce97be --- sw/source/filter/xml/swxml.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw') diff --git a/sw/source/filter/xml/swxml.cxx b/sw/source/filter/xml/swxml.cxx index 5464283df2d8..3bc98483ee1d 100644 --- a/sw/source/filter/xml/swxml.cxx +++ b/sw/source/filter/xml/swxml.cxx @@ -396,7 +396,7 @@ static void lcl_AdjustOutlineStylesForOOo( SwDoc& _rDoc ) // determine, which outline level has already a style assigned and // which of the default outline styles is created. const SwTxtFmtColls& rColls = *(_rDoc.GetTxtFmtColls()); - for ( sal_uInt16 n = 1; n < rColls.size(); ++n ) + for ( size_t n = 1; n < rColls.size(); ++n ) { SwTxtFmtColl* pColl = rColls[ n ]; if ( pColl->IsAssignedToListLevelOfOutlineStyle() ) -- cgit