Debugger: Remove "Change language automatically"

This commit is contained in:
Lasse Holmstedt
2010-08-24 12:04:18 +02:00
parent 63da8d4cd7
commit 67365553f7
5 changed files with 3 additions and 39 deletions

View File

@@ -490,15 +490,6 @@ DebuggerSettings *DebuggerSettings::instance()
item->setDefaultValue(20);
instance->insertItem(GdbWatchdogTimeout, item);
// Language switching
item = new Utils::SavedAction(instance);
item->setSettingsKey(debugModeGroup, QLatin1String("ChangeLanguageAutomatically"));
item->setText(tr("Change debugger language automatically"));
item->setToolTip(tr("Changes the debugger language according to the currently opened file."));
item->setCheckable(true);
item->setDefaultValue(true);
instance->insertItem(SwitchLanguageAutomatically, item);
return instance;
}