diff options
| author | Cástor Muñoz <cmvidal@gmail.com> | 2016-01-08 23:56:27 +0100 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2016-08-15 20:14:25 +0200 |
| commit | 40ce2b41331888d6284fff6e709789e939cc6a1a (patch) | |
| tree | 52eb3f721c026b4d2190be38ae9ab91f2df36356 /rbutil/rbutilqt/base/bootloaderinstallbase.cpp | |
| parent | e4af97300d5b08e48d9d282d5a7500cdfae4c251 (diff) | |
| download | rockbox-40ce2b41331888d6284fff6e709789e939cc6a1a.zip rockbox-40ce2b41331888d6284fff6e709789e939cc6a1a.tar.gz rockbox-40ce2b41331888d6284fff6e709789e939cc6a1a.tar.bz2 rockbox-40ce2b41331888d6284fff6e709789e939cc6a1a.tar.xz | |
rbutil: add abort signal for bootloader install/uninstall
During the bootloader install/uninstall process, a signal
is emitted when "Abort" button is pressed, the installers
can attach this signal and cancel the process.
Change-Id: I7f297b8031d7a2d93da0022081aaef03ef041baf
Diffstat (limited to 'rbutil/rbutilqt/base/bootloaderinstallbase.cpp')
| -rw-r--r-- | rbutil/rbutilqt/base/bootloaderinstallbase.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp index 9a1c74c..15ced2e 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallbase.cpp +++ b/rbutil/rbutilqt/base/bootloaderinstallbase.cpp @@ -103,6 +103,13 @@ void BootloaderInstallBase::installBlfile(void) } +void BootloaderInstallBase::progressAborted(void) +{ + LOG_INFO() << "progressAborted(void)"; + emit installAborted(); +} + + //! @brief backup OF file. //! @param to folder to write backup file to. Folder will get created. //! @return true on success, false on error. |