summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-03-13 13:06:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-03-13 13:17:35 +0000
commited740489ed39e0fc3ec43e3f3a1e6e9e366a2c5e (patch)
treec476ee2cd95c51ec6c70b87847f46c474b0e7558 /sw/source/filter/ww8/ww8par.cxx
parent866a9a57fedf92767f64fc9348722ce42e17cde4 (diff)
WaE: various warngs, e.g. unused argument, variables, ordering
Change-Id: I551ccf9b098d7f916bd889dbc82d22c0dc5c63f3
Diffstat (limited to 'sw/source/filter/ww8/ww8par.cxx')
-rw-r--r--sw/source/filter/ww8/ww8par.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index c7104c4377cc..8fa7f0cd7d9e 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -4746,8 +4746,8 @@ sal_uLong SwWW8ImplReader::CoreLoad(WW8Glossary *pGloss, const SwPosition &rPos)
}
}
// update graphic bullet information
- int nCount = pLstManager->GetWW8LSTInfoNum();
- for (int i = 0; i < nCount; ++i)
+ size_t nCount = pLstManager->GetWW8LSTInfoNum();
+ for (size_t i = 0; i < nCount; ++i)
{
SwNumRule* pRule = pLstManager->GetNumRule(i);
for (int j = 0; j < MAXLEVEL; ++j)