aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qtsupport/profilereader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qtsupport/profilereader.h')
-rw-r--r--src/plugins/qtsupport/profilereader.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/qtsupport/profilereader.h b/src/plugins/qtsupport/profilereader.h
index dfdf9af140..e734c1c1f4 100644
--- a/src/plugins/qtsupport/profilereader.h
+++ b/src/plugins/qtsupport/profilereader.h
@@ -49,7 +49,7 @@ class QTSUPPORT_EXPORT ProMessageHandler : public QObject, public QMakeHandler
Q_OBJECT
public:
- ProMessageHandler(bool verbose = true);
+ ProMessageHandler(bool verbose = true, bool exact = true);
virtual ~ProMessageHandler() {}
virtual void aboutToEval(ProFile *, ProFile *, EvalFileType) {}
@@ -58,12 +58,15 @@ public:
virtual void fileMessage(int type, const QString &msg);
void setVerbose(bool on) { m_verbose = on; }
+ void setExact(bool on) { m_exact = on; }
signals:
void writeMessage(const QString &error, Core::MessageManager::PrintToOutputPaneFlags flag);
private:
bool m_verbose;
+ bool m_exact;
+ QString m_prefix;
};
class QTSUPPORT_EXPORT ProFileReader : public ProMessageHandler, public QMakeParser, public ProFileEvaluator