1
0
Fork 0
forked from len0rd/rockbox

rbutil: enable "done" signal on bootloader uninstall

This allows to implement multi-stage uninstallers. Should not affect
the behaviour on current targets.

Change-Id: Idf8aec5caf76cf9317798890d094a7cebdbcabec
This commit is contained in:
Cástor Muñoz 2016-01-09 02:21:45 +01:00 committed by Dominik Riebeling
parent 6a1644c52a
commit 5a673d6df2
7 changed files with 8 additions and 2 deletions

View file

@ -569,11 +569,10 @@ void RbUtilQt::uninstallBootloader(void)
connect(bl, SIGNAL(logItem(QString, int)), logger, SLOT(addItem(QString, int)));
connect(bl, SIGNAL(logProgress(int, int)), logger, SLOT(setProgress(int, int)));
connect(bl, SIGNAL(done(bool)), logger, SLOT(setFinished()));
bl->uninstall();
logger->setFinished();
}