remove apparently useless code
it wouldn't actually *do* anything, as l is not a reference. i cannot figure out the original intention, so let's just drop it. Change-Id: Ic0a3457a1872cde827259ee5530959120456e934 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
parent
02cbc0746d
commit
202f08dc09
@ -221,7 +221,6 @@ Win32MakefileGenerator::processPrlFiles()
|
||||
QList<QMakeLocalFileName> libdirs;
|
||||
for(bool ret = false; true; ret = false) {
|
||||
//read in any prl files included..
|
||||
QStringList l_out;
|
||||
QStringList l = project->values("QMAKE_LIBS");
|
||||
for(QStringList::Iterator it = l.begin(); it != l.end(); ++it) {
|
||||
QString opt = (*it).trimmed();
|
||||
@ -255,12 +254,8 @@ Win32MakefileGenerator::processPrlFiles()
|
||||
}
|
||||
}
|
||||
}
|
||||
if(!opt.isEmpty())
|
||||
l_out.append(opt);
|
||||
}
|
||||
if(ret)
|
||||
l = l_out;
|
||||
else
|
||||
if (!ret)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user