Add some more bootloader install progress messages and call processEvents() more often before performing player disk accesses.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19724 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2009-01-08 17:16:53 +00:00
parent f5ab7c028e
commit c1b4745d7c
6 changed files with 16 additions and 0 deletions

View file

@ -81,6 +81,7 @@ void BootloaderInstallBase::downloadBlFinish(bool error)
else
emit logItem(tr("Download finished."), LOGOK);
QCoreApplication::processEvents();
m_blversion = m_http.timestamp();
emit downloadDone();
}
@ -134,6 +135,8 @@ int BootloaderInstallBase::logInstall(LogMode mode)
}
s.sync();
emit logItem(tr("Installation log created"), LOGOK);
return result;
}