summaryrefslogtreecommitdiffstats
path: root/qmake/generators/win32/borland_bmake.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-04-23 16:20:30 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-27 14:35:29 +0200
commitf85292ab206adaa43a9c8e4bfb02249cc4b2ea4d (patch)
tree30100cdaa64c9caa561e3e44fec31f6bcb5abcc0 /qmake/generators/win32/borland_bmake.cpp
parente0f1de0788954ff78f796a1f732800e762075cb0 (diff)
const correctness for values() calls
Change-Id: I1476ae8d3fb7364686398c5650729dee94a8e933 Reviewed-by: Mark Brand <mabrand@mabrand.nl>
Diffstat (limited to 'qmake/generators/win32/borland_bmake.cpp')
-rw-r--r--qmake/generators/win32/borland_bmake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/win32/borland_bmake.cpp b/qmake/generators/win32/borland_bmake.cpp
index 4c4ddf642e..110e2eafa6 100644
--- a/qmake/generators/win32/borland_bmake.cpp
+++ b/qmake/generators/win32/borland_bmake.cpp
@@ -57,7 +57,7 @@ BorlandMakefileGenerator::writeMakefile(QTextStream &t)
{
writeHeader(t);
if(!project->values("QMAKE_FAILED_REQUIREMENTS").isEmpty()) {
- QStringList &qut = project->values("QMAKE_EXTRA_TARGETS");
+ const QStringList &qut = project->values("QMAKE_EXTRA_TARGETS");
for(QStringList::ConstIterator it = qut.begin(); it != qut.end(); ++it)
t << *it << " ";
t << "all first clean:" << "\n\t"