rbutil: added a button into talkfile dialog, to directly jump to config of tts and enc.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15926 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Wenger 2007-12-14 19:49:11 +00:00
parent 815504b449
commit f5c695b43f
6 changed files with 60 additions and 3 deletions

View file

@ -747,6 +747,8 @@ void RbUtilQt::createTalkFiles(void)
installWindow->setUserSettings(userSettings);
installWindow->setDeviceSettings(devices);
installWindow->show();
connect(installWindow, SIGNAL(settingsUpdated()), this, SLOT(downloadInfo()));
connect(installWindow, SIGNAL(settingsUpdated()), this, SLOT(updateSettings()));
}
@ -757,6 +759,7 @@ void RbUtilQt::uninstall(void)
uninstallWindow->setUserSettings(userSettings);
uninstallWindow->setDeviceSettings(devices);
uninstallWindow->show();
}
void RbUtilQt::uninstallBootloader(void)