summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plugins/debugger/commonoptionspage.cpp15
-rw-r--r--src/plugins/debugger/debuggeractions.cpp7
-rw-r--r--src/plugins/debugger/debuggeractions.h3
3 files changed, 4 insertions, 21 deletions
diff --git a/src/plugins/debugger/commonoptionspage.cpp b/src/plugins/debugger/commonoptionspage.cpp
index aada5d7c33..9dd3eaabba 100644
--- a/src/plugins/debugger/commonoptionspage.cpp
+++ b/src/plugins/debugger/commonoptionspage.cpp
@@ -102,10 +102,6 @@ CommonOptionsPageWidget::CommonOptionsPageWidget
checkBoxUseToolTipsInMainEditor = new QCheckBox(behaviorBox);
checkBoxUseToolTipsInMainEditor->setText(tr("Use tooltips in main editor while debugging"));
- checkBoxListSourceFiles = new QCheckBox(behaviorBox);
- checkBoxListSourceFiles->setToolTip(tr("Populates the source file view automatically. This might slow down debugger startup considerably."));
- checkBoxListSourceFiles->setText(tr("Populate source file view automatically"));
-
QString t = tr("Stopping and stepping in the debugger "
"will automatically open views associated with the current location.") + QLatin1Char('\n');
checkBoxCloseSourceBuffersOnExit = new QCheckBox(behaviorBox);
@@ -174,11 +170,10 @@ CommonOptionsPageWidget::CommonOptionsPageWidget
gridLayout->addLayout(horizontalLayout, 7, 0, 1, 2);
gridLayout->addWidget(checkBoxFontSizeFollowsEditor, 0, 1, 1, 1);
- gridLayout->addWidget(checkBoxListSourceFiles, 1, 1, 1, 1);
- gridLayout->addWidget(checkBoxSwitchModeOnExit, 2, 1, 1, 1);
- gridLayout->addWidget(checkBoxShowQmlObjectTree, 3, 1, 1, 1);
- gridLayout->addWidget(checkBoxKeepEditorStationaryWhileStepping, 4, 1, 1, 1);
- gridLayout->addWidget(checkBoxRegisterForPostMortem, 5, 1, 1, 1);
+ gridLayout->addWidget(checkBoxSwitchModeOnExit, 1, 1, 1, 1);
+ gridLayout->addWidget(checkBoxShowQmlObjectTree, 2, 1, 1, 1);
+ gridLayout->addWidget(checkBoxKeepEditorStationaryWhileStepping, 3, 1, 1, 1);
+ gridLayout->addWidget(checkBoxRegisterForPostMortem, 4, 1, 1, 1);
QVBoxLayout *verticalLayout = new QVBoxLayout(this);
verticalLayout->addWidget(behaviorBox);
@@ -187,8 +182,6 @@ CommonOptionsPageWidget::CommonOptionsPageWidget
m_group->clear();
- m_group->insert(action(ListSourceFiles),
- checkBoxListSourceFiles);
m_group->insert(action(UseAlternatingRowColors),
checkBoxUseAlternatingRowColors);
m_group->insert(action(UseToolTipsInMainEditor),
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp
index b1d7e193dc..f998249ced 100644
--- a/src/plugins/debugger/debuggeractions.cpp
+++ b/src/plugins/debugger/debuggeractions.cpp
@@ -554,13 +554,6 @@ DebuggerSettings::DebuggerSettings()
item->setCheckable(true);
item->setDefaultValue(false);
insertItem(UseAddressInStackView, item);
- item = new SavedAction(this);
-
- item->setSettingsKey(debugModeGroup, QLatin1String("ListSourceFiles"));
- item->setText(tr("List Source Files"));
- item->setCheckable(true);
- item->setDefaultValue(false);
- insertItem(ListSourceFiles, item);
item = new SavedAction(this);
item->setSettingsKey(debugModeGroup, QLatin1String("SkipKnownFrames"));
diff --git a/src/plugins/debugger/debuggeractions.h b/src/plugins/debugger/debuggeractions.h
index c7dabd7015..a1fd396280 100644
--- a/src/plugins/debugger/debuggeractions.h
+++ b/src/plugins/debugger/debuggeractions.h
@@ -162,9 +162,6 @@ enum DebuggerActionCode
MaximalStringLength,
DisplayStringLimit,
- // Source List
- ListSourceFiles,
-
// Running
SkipKnownFrames,
EnableReverseDebugging,