aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-05-30 14:14:42 +0200
committerTobias Hunger <tobias.hunger@digia.com>2013-05-30 14:15:50 +0200
commitd080c54327391df7e658ad99c424c75b898dd92c (patch)
tree11c70be8af21f4954bdb6155efe0ee77cfdcbd37
parentb97422b710be8489c3798febcc82dc8cc6b86c3d (diff)
Qbs: Actually emit signal that parsing started
The logic to disable building depends on this signal. Change-Id: I2341ddb70eebeb25c8c4ffdbbb1e5a83945fb971 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
-rw-r--r--src/plugins/qbsprojectmanager/qbsproject.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/qbsprojectmanager/qbsproject.cpp b/src/plugins/qbsprojectmanager/qbsproject.cpp
index f01cdd4e52..92f7efbf52 100644
--- a/src/plugins/qbsprojectmanager/qbsproject.cpp
+++ b/src/plugins/qbsprojectmanager/qbsproject.cpp
@@ -385,6 +385,8 @@ void QbsProject::parse(const QVariantMap &config, const QString &dir)
this, SLOT(handleQbsParsingTaskSetup(QString,int)));
connect(m_qbsSetupProjectJob, SIGNAL(taskProgress(int,qbs::AbstractJob*)),
this, SLOT(handleQbsParsingProgress(int)));
+
+ emit projectParsingStarted();
}
void QbsProject::prepareForParsing()