summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/configure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/configure.cpp')
-rw-r--r--rbutil/rbutilqt/configure.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/configure.cpp b/rbutil/rbutilqt/configure.cpp
index 6d52fd0f2b..e92234527b 100644
--- a/rbutil/rbutilqt/configure.cpp
+++ b/rbutil/rbutilqt/configure.cpp
@@ -60,6 +60,15 @@ Config::Config(QWidget *parent) : QDialog(parent)
60 connect(ui.buttonCancel, SIGNAL(clicked()), this, SLOT(abort())); 60 connect(ui.buttonCancel, SIGNAL(clicked()), this, SLOT(abort()));
61 connect(ui.radioNoProxy, SIGNAL(toggled(bool)), this, SLOT(setNoProxy(bool))); 61 connect(ui.radioNoProxy, SIGNAL(toggled(bool)), this, SLOT(setNoProxy(bool)));
62 connect(ui.radioSystemProxy, SIGNAL(toggled(bool)), this, SLOT(setSystemProxy(bool))); 62 connect(ui.radioSystemProxy, SIGNAL(toggled(bool)), this, SLOT(setSystemProxy(bool)));
63
64 // disable unimplemented stuff
65 ui.buttonCacheBrowse->setEnabled(false);
66 ui.cacheDisable->setEnabled(false);
67 ui.cacheOfflineMode->setEnabled(false);
68 ui.buttonCacheClear->setEnabled(false);
69 ui.scrobblerUser->setEnabled(false);
70 ui.scrobblerPass->setEnabled(false);
71 ui.scrobblerTimezone->setEnabled(false);
63} 72}
64 73
65 74