diff options
author | David Schulz <[email protected]> | 2015-11-04 12:35:43 +0100 |
---|---|---|
committer | David Schulz <[email protected]> | 2015-11-11 07:35:33 +0000 |
commit | 90ed0cf793ba19541d634a7faa9f227b7f042c71 (patch) | |
tree | 96cb2c3bf651bd935651b2379017b3bd3d0b38d3 /src/plugins | |
parent | 58804ad823c57201e8664845f160c5d476d9bd0b (diff) |
Debugger: Remove unused setting ListSourceFiles.
Change-Id: I4c60dcbf29ac050cdead98f2c58c204e3ffbab0a
Reviewed-by: Christian Stenger <[email protected]>
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/debugger/commonoptionspage.cpp | 15 | ||||
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 7 | ||||
-rw-r--r-- | src/plugins/debugger/debuggeractions.h | 3 |
3 files changed, 4 insertions, 21 deletions
diff --git a/src/plugins/debugger/commonoptionspage.cpp b/src/plugins/debugger/commonoptionspage.cpp index aada5d7c33b..9dd3eaabbaf 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 b1d7e193dcc..f998249cedf 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 c7dabd7015c..a1fd3962807 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, |