summaryrefslogtreecommitdiffstats
path: root/qmake/property.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-18 13:57:39 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-27 14:35:33 +0200
commit533b4f1afd0c05e01a7ad3cf24ac4fde0e61e3c0 (patch)
tree93161e3d8bc729bb0b476262085722c0060526d6 /qmake/property.h
parent2106ab2e756b8c7c190268b595aad98b630eb9c7 (diff)
remove support for versioning qmake properties
the rationale is mostly the same as in 568e714fdf, plus the additional point that the qmake version didn't change for a decade. fallback paths for version 2.01a properties are provided. Change-Id: I3d3f16595eca9eca71c78fda9dbaf53da9f874a9 Reviewed-by: Mark Brand <mabrand@mabrand.nl>
Diffstat (limited to 'qmake/property.h')
-rw-r--r--qmake/property.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/qmake/property.h b/qmake/property.h
index 6195e482fb..13767ff405 100644
--- a/qmake/property.h
+++ b/qmake/property.h
@@ -54,8 +54,6 @@ class QMakeProperty
{
QSettings *settings;
void initSettings();
- QString keyBase(bool =true) const;
- QString value(QString, bool just_check);
QHash<QString, QString> m_values;
@@ -64,7 +62,7 @@ public:
~QMakeProperty();
bool hasValue(QString);
- QString value(QString v) { return value(v, false); }
+ QString value(const QString &);
void setValue(QString, const QString &);
void remove(const QString &);