diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-04-27 12:09:11 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-04-30 14:38:21 (GMT) |
commit | 7cc7b3f53ae8e0105909d81950752ec75f338d83 (patch) | |
tree | f6b0ae902042b1c510ea8d3049823e713a783206 /qmake | |
parent | d8d8a4c056b50fe231611c9e90e5c43136ce2114 (diff) | |
download | Qt-7cc7b3f53ae8e0105909d81950752ec75f338d83.zip Qt-7cc7b3f53ae8e0105909d81950752ec75f338d83.tar.gz Qt-7cc7b3f53ae8e0105909d81950752ec75f338d83.tar.bz2 |
document some functions' scope
Reviewed-by: joerg
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/project.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qmake/project.h b/qmake/project.h index bfebed0..976236c 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; } |