summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Wenger <domonoky@googlemail.com>2009-05-09 20:04:08 +0000
committerDominik Wenger <domonoky@googlemail.com>2009-05-09 20:04:08 +0000
commit25f77f60dd87b44da516971411e334536e198519 (patch)
treec817ccf2c6a1b3d858774b15726b62b2dbd79cad
parenta7970d32e8eff8f297089fe2f1411806176bacb0 (diff)
downloadrockbox-25f77f60dd87b44da516971411e334536e198519.tar.gz
rockbox-25f77f60dd87b44da516971411e334536e198519.zip
rbutil: make sure the voice creation window updates its display on startup.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20896 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/rbutilqt/createvoicewindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/createvoicewindow.cpp b/rbutil/rbutilqt/createvoicewindow.cpp
index c8c6b85435..01c9a256b7 100644
--- a/rbutil/rbutilqt/createvoicewindow.cpp
+++ b/rbutil/rbutilqt/createvoicewindow.cpp
@@ -28,7 +28,7 @@ CreateVoiceWindow::CreateVoiceWindow(QWidget *parent) : QDialog(parent)
28{ 28{
29 ui.setupUi(this); 29 ui.setupUi(this);
30 voicecreator = new VoiceFileCreator(this); 30 voicecreator = new VoiceFileCreator(this);
31 31 updateSettings();
32 connect(ui.change,SIGNAL(clicked()),this,SLOT(change())); 32 connect(ui.change,SIGNAL(clicked()),this,SLOT(change()));
33} 33}
34 34