mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
Fix a source string whitespace error.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30069 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f0a601dab6
commit
c891ddb506
17 changed files with 19 additions and 19 deletions
|
|
@ -1039,7 +1039,7 @@ void RbUtilQt::uninstallBootloader(void)
|
|||
// create installer
|
||||
BootloaderInstallBase *bl = BootloaderInstallBase::createBootloaderInstaller(this,
|
||||
SystemInfo::value(SystemInfo::CurBootloaderMethod).toString());
|
||||
|
||||
|
||||
if(bl == NULL ) {
|
||||
logger->addItem(tr("No uninstall method for this target known."), LOGERROR);
|
||||
logger->setFinished();
|
||||
|
|
@ -1047,13 +1047,13 @@ void RbUtilQt::uninstallBootloader(void)
|
|||
}
|
||||
if( (bl->capabilities() & BootloaderInstallBase::Uninstall) == 0)
|
||||
{
|
||||
logger->addItem(tr("Rockbox Utility can not uninstall the bootloader on this target."
|
||||
logger->addItem(tr("Rockbox Utility can not uninstall the bootloader on this target. "
|
||||
"Try a normal firmware update to remove the booloader."), LOGERROR);
|
||||
logger->setFinished();
|
||||
delete bl;
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
QStringList blfile = SystemInfo::value(SystemInfo::CurBootloaderFile).toStringList();
|
||||
QStringList blfilepath;
|
||||
for(int a = 0; a < blfile.size(); a++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue