aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2023-07-18 14:14:18 +0200
committerhjk <[email protected]>2023-07-24 08:16:39 +0000
commit5d67ad37cf2bb39644f803fe7d97f2bf8e77cd4d (patch)
tree939038634a2b417a512f2765a81a1f27cf073206 /src/plugins/debugger/debuggerplugin.cpp
parent1c4f9733659521ae7bdf24ef6e48a956ef2ab373 (diff)
Debugger: Simplify code path leading to .writeSettings()
Change-Id: Iaea1159305507e10adf2b448a774e2b528eaef80 Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 3add78b59ff..18d68ac2bb9 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -583,12 +583,6 @@ public:
RunControl *attachToRunningProcess(Kit *kit, const ProcessInfo &process, bool contAfterAttach);
- void writeSettings()
- {
- settings().writeSettings();
-// writeWindowSettings();
- }
-
void breakpointSetMarginActionTriggered(bool isMessageOnly, const ContextData &data)
{
QString message;
@@ -1160,10 +1154,6 @@ DebuggerPluginPrivate::DebuggerPluginPrivate(const QStringList &arguments)
// Connections
//
- // Core
- connect(ICore::instance(), &ICore::saveSettingsRequested,
- this, &DebuggerPluginPrivate::writeSettings);
-
// ProjectExplorer
connect(ProjectExplorerPlugin::instance(), &ProjectExplorerPlugin::runActionsUpdated,
this, &DebuggerPluginPrivate::updatePresetState);