if no proxy type is set default to none.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14255 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2007-08-09 16:01:02 +00:00
parent 2060a5b17d
commit 965881fd85

View file

@ -142,7 +142,7 @@ void Config::setUserSettings(QSettings *user)
QString proxyType = userSettings->value("defaults/proxytype").toString();
if(proxyType == "manual") ui.radioManualProxy->setChecked(true);
else if(proxyType == "system") ui.radioSystemProxy->setChecked(true);
else if(proxyType == "none") ui.radioNoProxy->setChecked(true);
else ui.radioNoProxy->setChecked(true);
// set language selection
QList<QListWidgetItem*> a;