Fix voicefile / talkfile generation windows not updating the displayed settings if the user used the "change" button.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16462 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2008-03-01 13:42:14 +00:00
parent dfac61e89c
commit 05f24a1ec4
4 changed files with 20 additions and 15 deletions

View file

@ -34,9 +34,6 @@ class InstallTalkWindow : public QDialog
InstallTalkWindow(QWidget *parent = 0);
void setSettings(RbSettings* sett);
signals:
void settingsUpdated(void);
public slots:
void accept(void);
void change(void);
@ -44,6 +41,7 @@ class InstallTalkWindow : public QDialog
private slots:
void browseFolder(void);
void setTalkFolder(QString folder);
void settingsUpdated(void);
private:
TalkFileCreator* talkcreator;