summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-06-22 09:47:10 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-06-23 09:05:35 (GMT)
commit4325512a4459003c25db981e185412c81410754a (patch)
treeb3a95b9fc45d2c502484872e1566847f837beeaa /qmake
parentada73373877b71d6cceaf82fc9237c139eb53915 (diff)
downloadQt-4325512a4459003c25db981e185412c81410754a.zip
Qt-4325512a4459003c25db981e185412c81410754a.tar.gz
Qt-4325512a4459003c25db981e185412c81410754a.tar.bz2
add some comments
Diffstat (limited to 'qmake')
-rw-r--r--qmake/project.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qmake/project.cpp b/qmake/project.cpp
index 60babeb..76cca00 100644
--- a/qmake/project.cpp
+++ b/qmake/project.cpp
@@ -1730,9 +1730,9 @@ QMakeProject::doProjectInclude(QString file, uchar flags, QMap<QString, QStringL
if(proj.doProjectInclude("default_pre", IncludeFlagFeature, proj.variables()) == IncludeNoExist)
proj.doProjectInclude("default", IncludeFlagFeature, proj.variables());
#endif
- parsed = proj.read(file, proj.variables());
+ parsed = proj.read(file, proj.variables()); // parse just that file (fromfile, infile)
} else {
- parsed = proj.read(file);
+ parsed = proj.read(file); // parse all aux files (load/include into)
}
place = proj.variables();
} else {