loplugin:loopvartoosmall

Change-Id: I5518e40a30bdad53470cc52b59eff04ab6d873d4
This commit is contained in:
Noel Grandin
2015-05-28 16:48:15 +02:00
parent e0b2e6e3f7
commit 49ea2258d4
45 changed files with 88 additions and 88 deletions

View File

@@ -464,7 +464,7 @@ bool HelpCompiler::compile()
std::string title;
// returns a clone of the document with switch-cases resolved
std::string appl = module.substr(1);
for (unsigned int i = 0; i < appl.length(); ++i)
for (size_t i = 0; i < appl.length(); ++i)
{
appl[i]=toupper(appl[i]);
}