diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-20 20:53:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-20 20:53:12 +0200 |
commit | 2ff09b059a096df109a3be3778e77dde9a4458cf (patch) | |
tree | ceb5bd690f72302b5a1a54a5acb557706944ad73 /svx | |
parent | f1611d52cc49e51b770c56e902857c76e3c51eb2 (diff) |
loplugin:loopvartoosmall
Change-Id: I5e3506492f75e0f8e7ce770713b424a854d9813d
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdotextdecomposition.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx index b9f4ca9d1da8..e946be39a6c9 100644 --- a/svx/source/svdraw/svdotextdecomposition.cxx +++ b/svx/source/svdraw/svdotextdecomposition.cxx @@ -1421,7 +1421,7 @@ void SdrTextObj::impHandleChainingEventsDuringDecomposition(SdrOutliner &rOutlin // Some debug output size_t nObjCount = pPage->GetObjCount(); - for (unsigned i = 0; i < nObjCount; i++) { + for (size_t i = 0; i < nObjCount; i++) { SdrTextObj *pCurObj = static_cast<SdrTextObj *>(pPage->GetObj(i)); if (pCurObj == this) { |