Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2017-03-16 22:53:05 +0300
committerMikkel Krautz <mikkel@krautz.dk>2017-03-16 23:15:12 +0300
commit101783074fc5968d44df8ccdcb241b0320c7858a (patch)
tree552d9423ab61783e405b7b7c5a4bbb20346953b2 /src/mumble/OverlayConfig.cpp
parentbed086919e7ed04634822985aafe125f4a440af7 (diff)
Mumble: remove expert mode.
This commit removes the concept of expert mode configuration from the Mumble client.
Diffstat (limited to 'src/mumble/OverlayConfig.cpp')
-rw-r--r--src/mumble/OverlayConfig.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mumble/OverlayConfig.cpp b/src/mumble/OverlayConfig.cpp
index cfea82027..5b402f579 100644
--- a/src/mumble/OverlayConfig.cpp
+++ b/src/mumble/OverlayConfig.cpp
@@ -338,18 +338,6 @@ void OverlayConfig::load(const Settings &r) {
update();
}
-bool OverlayConfig::expert(bool show_expert) {
- int idx = qtwSetup->indexOf(qwExceptions);
-
-#ifdef Q_OS_LINUX
- Q_UNUSED(show_expert);
- qtwSetup->setTabEnabled(idx, false);
-#else
- qtwSetup->setTabEnabled(idx, show_expert);
-#endif
- return true;
-}
-
QString OverlayConfig::title() const {
return tr("Overlay");
}