diff options
author | Jarek Kobus <[email protected]> | 2025-02-27 10:43:00 +0100 |
---|---|---|
committer | Jarek Kobus <[email protected]> | 2025-03-03 11:51:48 +0000 |
commit | 51bc54e7ee598bb424cad1c6c92e43fcbbf9dd0c (patch) | |
tree | 486fecf0ac9d94cc0fcac96c9e35adabef429813 | |
parent | 39ed2e70849a19568629471e8676455f6d48686e (diff) |
Debugger: Remove unneeded debugger includes
Change-Id: If3b4803932080e8ea19cdee841287a33e07ca179
Reviewed-by: hjk <[email protected]>
-rw-r--r-- | src/plugins/debugger/dap/dapengine.cpp | 1 | ||||
-rw-r--r-- | src/plugins/debugger/debuggerengine.h | 2 | ||||
-rw-r--r-- | src/plugins/nim/nimplugin.cpp | 1 | ||||
-rw-r--r-- | src/plugins/python/pythonplugin.cpp | 3 |
4 files changed, 0 insertions, 7 deletions
diff --git a/src/plugins/debugger/dap/dapengine.cpp b/src/plugins/debugger/dap/dapengine.cpp index fd4119e361c..6acbb508dfc 100644 --- a/src/plugins/debugger/dap/dapengine.cpp +++ b/src/plugins/debugger/dap/dapengine.cpp @@ -16,7 +16,6 @@ #include <debugger/debuggerinternalconstants.h> #include <debugger/debuggermainwindow.h> #include <debugger/debuggerprotocol.h> -#include <debugger/debuggerruncontrol.h> #include <debugger/debuggertooltipmanager.h> #include <debugger/debuggertr.h> #include <debugger/moduleshandler.h> diff --git a/src/plugins/debugger/debuggerengine.h b/src/plugins/debugger/debuggerengine.h index f8cbe02524f..107d40d372f 100644 --- a/src/plugins/debugger/debuggerengine.h +++ b/src/plugins/debugger/debuggerengine.h @@ -39,8 +39,6 @@ class Result; namespace Debugger { -class DebuggerRunTool; - enum DebuggerState { DebuggerNotReady, // Debugger not started diff --git a/src/plugins/nim/nimplugin.cpp b/src/plugins/nim/nimplugin.cpp index 5d2f19706cc..70420fcb710 100644 --- a/src/plugins/nim/nimplugin.cpp +++ b/src/plugins/nim/nimplugin.cpp @@ -14,7 +14,6 @@ #include "project/nimproject.h" #include "project/nimrunconfiguration.h" #include "project/nimtoolchain.h" -#include "settings/nimcodestylepreferencesfactory.h" #include "settings/nimcodestylesettingspage.h" #include <extensionsystem/iplugin.h> diff --git a/src/plugins/python/pythonplugin.cpp b/src/plugins/python/pythonplugin.cpp index 370720d159b..e404a4d9269 100644 --- a/src/plugins/python/pythonplugin.cpp +++ b/src/plugins/python/pythonplugin.cpp @@ -13,8 +13,6 @@ #include "pythontr.h" #include "pythonwizardpage.h" -#include <debugger/debuggerruncontrol.h> - #include <extensionsystem/iplugin.h> #include <projectexplorer/buildtargetinfo.h> @@ -29,7 +27,6 @@ #include <utils/fsengine/fileiconprovider.h> #include <utils/theme/theme.h> -using namespace Debugger; using namespace ProjectExplorer; using namespace Utils; |