summaryrefslogtreecommitdiffstats
path: root/qmake/meta.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-07-09 18:49:13 +0200
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-07-16 15:44:18 +0000
commiteb9da60f0c87cb4a3b2b26a66888c0f95cdfa6b4 (patch)
treeb0c38104c49b682360b42fdbe9936af193965490 /qmake/meta.h
parente2b90768ae2e19fe1a888c4a0ea9f5b31a973811 (diff)
qmake: purge infra for supporting multiple formats from QMakeMetaInfo
only .prl is actually supported (and we expect this to remain the case), so just simplify the code. Change-Id: Ia23f9f257bf89ca214c3deabd8a7744b155c7aa9 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'qmake/meta.h')
-rw-r--r--qmake/meta.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/qmake/meta.h b/qmake/meta.h
index 456635a9a9..b2a0f40054 100644
--- a/qmake/meta.h
+++ b/qmake/meta.h
@@ -43,7 +43,6 @@ class QMakeMetaInfo
{
QMakeProject *conf;
ProValueMap vars;
- QString meta_type;
static QHash<QString, ProValueMap> cache_vars;
public:
QMakeMetaInfo(QMakeProject *_conf);
@@ -52,7 +51,6 @@ public:
static QString findLib(const QString &lib);
bool readLib(const QString &meta_file);
- QString type() const;
bool isEmpty(const ProKey &v);
ProStringList &values(const ProKey &v);
ProString first(const ProKey &v);
@@ -62,9 +60,6 @@ public:
inline bool QMakeMetaInfo::isEmpty(const ProKey &v)
{ return !vars.contains(v) || vars[v].isEmpty(); }
-inline QString QMakeMetaInfo::type() const
-{ return meta_type; }
-
inline ProStringList &QMakeMetaInfo::values(const ProKey &v)
{ return vars[v]; }