summaryrefslogtreecommitdiffstats
path: root/src/b2qt-flashing-wizard/progress_page.cpp
diff options
context:
space:
mode:
authorRainer Keller <rainer.keller@theqtcompany.com>2014-11-14 15:19:18 +0100
committerRainer Keller <rainer.keller@theqtcompany.com>2014-11-14 16:19:21 +0200
commit9f77929a4306a759c9d4bfb8cadc810ed4c05219 (patch)
tree87f4db96b141b7eb0f0728ed3ffca28f0b091536 /src/b2qt-flashing-wizard/progress_page.cpp
parent6010e69aa3ac3e94c0fabf16a28e682e35a07a68 (diff)
b2qt-flashing-wizard: Handle script errors
Change-Id: Ic470f3bdb4e2870279edcb3012160b9edea075ae Reviewed-by: Rainer Keller <rainer.keller@theqtcompany.com>
Diffstat (limited to 'src/b2qt-flashing-wizard/progress_page.cpp')
-rw-r--r--src/b2qt-flashing-wizard/progress_page.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/b2qt-flashing-wizard/progress_page.cpp b/src/b2qt-flashing-wizard/progress_page.cpp
index 9c87d2d..01a8691 100644
--- a/src/b2qt-flashing-wizard/progress_page.cpp
+++ b/src/b2qt-flashing-wizard/progress_page.cpp
@@ -82,11 +82,19 @@ void ProgressPage::finished()
wizard()->next(); // progress to next page automatically
}
+void ProgressPage::failed(const QString &message)
+{
+ mFinished = false;
+ emit completeChanged();
+ mProgress->setText(message);
+}
+
void ProgressPage::setActor(Actor *actor)
{
Q_ASSERT(actor);
mActor = actor;
connect(actor, &Actor::finished, this, &ProgressPage::finished);
+ connect(actor, &Actor::failed, this, &ProgressPage::failed);
connect(actor, &Actor::details, this, &ProgressPage::addDetails);
connect(actor, &Actor::progress, this, &ProgressPage::progress);
}