summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/installzip.cpp
diff options
context:
space:
mode:
authorDominik Wenger <domonoky@googlemail.com>2008-04-01 18:02:56 +0000
committerDominik Wenger <domonoky@googlemail.com>2008-04-01 18:02:56 +0000
commit2016ab4c96f920efbeecf85dc1dfe188b9356c16 (patch)
tree4ed70664cc9b1481c9e5de1cf50acb0f6328c133 /rbutil/rbutilqt/installzip.cpp
parente249ecc85b30687764289a500c92d32dd2d10b0a (diff)
downloadrockbox-2016ab4c96f920efbeecf85dc1dfe188b9356c16.tar.gz
rockbox-2016ab4c96f920efbeecf85dc1dfe188b9356c16.zip
rbutil: let rbutil use the new voice.zip files. Also make the download cache working again. (make sure to connect signals before calling getFile() ).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16917 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/installzip.cpp')
-rw-r--r--rbutil/rbutilqt/installzip.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/installzip.cpp b/rbutil/rbutilqt/installzip.cpp
index 3948e7ea75..880082a86d 100644
--- a/rbutil/rbutilqt/installzip.cpp
+++ b/rbutil/rbutilqt/installzip.cpp
@@ -90,11 +90,12 @@ void ZipInstaller::installStart()
90 getter->setCache(true); 90 getter->setCache(true);
91 } 91 }
92 getter->setFile(downloadFile); 92 getter->setFile(downloadFile);
93 getter->getFile(QUrl(m_url)); 93
94
95 connect(getter, SIGNAL(done(bool)), this, SLOT(downloadDone(bool))); 94 connect(getter, SIGNAL(done(bool)), this, SLOT(downloadDone(bool)));
96 connect(getter, SIGNAL(dataReadProgress(int, int)), this, SLOT(updateDataReadProgress(int, int))); 95 connect(getter, SIGNAL(dataReadProgress(int, int)), this, SLOT(updateDataReadProgress(int, int)));
97 connect(m_dp, SIGNAL(aborted()), getter, SLOT(abort())); 96 connect(m_dp, SIGNAL(aborted()), getter, SLOT(abort()));
97
98 getter->getFile(QUrl(m_url));
98} 99}
99 100
100 101