1
0
Fork 0
forked from len0rd/rockbox

If downloading the build information didn't work don't try to populate the version information.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20817 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2009-04-27 21:33:51 +00:00
parent a357c202a2
commit 4e747f1c5c

View file

@ -223,8 +223,10 @@ void RbUtilQt::downloadDone(bool error)
void RbUtilQt::downloadBleedingDone(bool error) void RbUtilQt::downloadBleedingDone(bool error)
{ {
if(error) qDebug() << "network error:" << bleeding->error(); if(error) {
qDebug() << "network error:" << bleeding->error();
}
else {
bleedingInfo.open(); bleedingInfo.open();
QSettings info(bleedingInfo.fileName(), QSettings::IniFormat, this); QSettings info(bleedingInfo.fileName(), QSettings::IniFormat, this);
bleedingInfo.close(); bleedingInfo.close();
@ -234,6 +236,7 @@ void RbUtilQt::downloadBleedingDone(bool error)
m_gotInfo = true; m_gotInfo = true;
} }
}
void RbUtilQt::downloadDone(int id, bool error) void RbUtilQt::downloadDone(int id, bool error)