Kaydet (Commit) 2ff09b05 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:loopvartoosmall

Change-Id: I5e3506492f75e0f8e7ce770713b424a854d9813d
üst f1611d52
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment