summaryrefslogtreecommitdiff
path: root/qmake
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-04-27 14:09:11 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-04-30 16:38:21 +0200
commit7cc7b3f53ae8e0105909d81950752ec75f338d83 (patch)
treef6b0ae902042b1c510ea8d3049823e713a783206 /qmake
parentd8d8a4c056b50fe231611c9e90e5c43136ce2114 (diff)
document some functions' scope
Reviewed-by: joerg
Diffstat (limited to 'qmake')
-rw-r--r--qmake/project.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/qmake/project.h b/qmake/project.h
index bfebed0be2..976236cd02 100644
--- a/qmake/project.h
+++ b/qmake/project.h
@@ -150,11 +150,11 @@ public:
bool isActiveConfig(const QString &x, bool regex=false,
QMap<QString, QStringList> *place=NULL);
- bool isSet(const QString &v);
- bool isEmpty(const QString &v);
- QStringList &values(const QString &v);
- QString first(const QString &v);
- QMap<QString, QStringList> &variables();
+ bool isSet(const QString &v); // No compat mapping, no magic variables
+ bool isEmpty(const QString &v); // With compat mapping, but no magic variables
+ QStringList &values(const QString &v); // With compat mapping and magic variables
+ QString first(const QString &v); // ditto
+ QMap<QString, QStringList> &variables(); // No compat mapping and magic, obviously
bool isRecursive() const { return recursive; }