diff options
author | hjk <[email protected]> | 2023-11-24 17:55:50 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2023-11-27 13:35:28 +0000 |
commit | 3bbda8f9daf2d18fe6f973c7a7854ff81ffbdb85 (patch) | |
tree | 6a662cd00c0511e2b35905fd3631e571530fc200 /src/plugins/debugger/debuggerplugin.cpp | |
parent | ba249a35141892168f16fd3c6e4613f7b0f67131 (diff) |
ProjectExplorer: Rename Tool{C,c}hainKitAspect
Change-Id: I74460b6402ab00f972c208023f03fac617982a11
Reviewed-by: Christian Kandeler <[email protected]>
Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index ecb655f6c0e..cbfe4b7b2b6 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -533,7 +533,7 @@ static Kit::Predicate cdbPredicate(char wordWidth = 0) return false; } if (wordWidth) - return ToolChainKitAspect::targetAbi(k).wordWidth() == wordWidth; + return ToolchainKitAspect::targetAbi(k).wordWidth() == wordWidth; return true; }; } @@ -1308,13 +1308,13 @@ static Kit *guessKitFromAbis(const Abis &abis) if (!abis.isEmpty()) { // Try exact abis. kit = KitManager::kit([abis](const Kit *k) { - const Abi tcAbi = ToolChainKitAspect::targetAbi(k); + const Abi tcAbi = ToolchainKitAspect::targetAbi(k); return abis.contains(tcAbi) && !DebuggerKitAspect::configurationErrors(k); }); if (!kit) { // Or something compatible. kit = KitManager::kit([abis](const Kit *k) { - const Abi tcAbi = ToolChainKitAspect::targetAbi(k); + const Abi tcAbi = ToolchainKitAspect::targetAbi(k); return !DebuggerKitAspect::configurationErrors(k) && Utils::contains(abis, [tcAbi](const Abi &a) { return a.isCompatibleWith(tcAbi); }); }); @@ -1764,7 +1764,7 @@ RunControl *DebuggerPluginPrivate::attachToRunningProcess(Kit *kit, return nullptr; } - const Abi tcAbi = ToolChainKitAspect::targetAbi(kit); + const Abi tcAbi = ToolchainKitAspect::targetAbi(kit); const bool isWindows = (tcAbi.os() == Abi::WindowsOS); if (isWindows && isWinProcessBeingDebugged(processInfo.processId)) { AsynchronousMessageBox::warning( |