From eb9da60f0c87cb4a3b2b26a66888c0f95cdfa6b4 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 9 Jul 2018 18:49:13 +0200 Subject: 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 --- qmake/meta.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'qmake/meta.h') 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 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]; } -- cgit v1.2.3