rbutil: move many more connect calls, mainly for safety.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16997 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Wenger 2008-04-06 19:50:38 +00:00
parent 94d65d837c
commit b235b1306e
7 changed files with 31 additions and 19 deletions

View file

@ -35,15 +35,15 @@ void CreateVoiceWindow::change()
{
Config *cw = new Config(this,4);
cw->setSettings(settings);
cw->show();
connect(cw, SIGNAL(settingsUpdated()), this, SLOT(updateSettings()));
cw->show();
}
void CreateVoiceWindow::accept()
{
logger = new ProgressLoggerGui(this);
logger->show();
connect(logger,SIGNAL(closed()),this,SLOT(close()));
logger->show();
QString lang = ui.comboLanguage->currentText();
int wvThreshold = ui.wavtrimthreshold->value();