summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-04-24 23:57:22 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-04-27 14:00:48 +0200
commit76ff6453eee84d22f8037ec423b95d40edd10ca0 (patch)
tree086f06c43e0f8f48eaab029ad6ae476ba9f090ec /sw
parent02fe5bc8b8ffb4241c934806a6c8628edb7d3d7b (diff)
sal_uInt16 to size_t
Change-Id: I9928d07c33cdd2b79a48990b0430c314c9ce97be
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/xml/swxml.cxx2
1 files changed, 1 insertions, 1 deletions
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() )