summaryrefslogtreecommitdiffstats
path: root/qmake/meta.h
diff options
context:
space:
mode:
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]; }