aboutsummaryrefslogtreecommitdiffstats
path: root/qt-cpp
diff options
context:
space:
mode:
authorOrkun Tokdemir <orkun.tokdemir@qt.io>2024-09-26 11:34:01 +0200
committerOrkun Tokdemir <orkun.tokdemir@qt.io>2024-09-26 10:37:12 +0000
commit70ec19619e7aa5472820593e3e996dd23e773ca8 (patch)
tree6b6a45d28ea23c4839905832e49c34daefe07c3f /qt-cpp
parent64144b718a20e6230e7b97ece78e8d5e51fc2d3e (diff)
qt-core: Move the main reset command to qt-core from qt-cpp
* Move the main reset command to qt-core * Execute other reset commands from qt-core Change-Id: I758215dfbaaba5858ce3b5a4e84698cb2b33ed69 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
Diffstat (limited to 'qt-cpp')
-rw-r--r--qt-cpp/package.json5
-rw-r--r--qt-cpp/package.nls.json1
-rw-r--r--qt-cpp/src/extension.ts4
3 files changed, 2 insertions, 8 deletions
diff --git a/qt-cpp/package.json b/qt-cpp/package.json
index 4c7b0d9..3cb35d2 100644
--- a/qt-cpp/package.json
+++ b/qt-cpp/package.json
@@ -69,11 +69,6 @@
"command": "qt-cpp.scanForQtKits",
"title": "%qt-cpp.command.scanForQtKits.title%",
"category": "Qt"
- },
- {
- "command": "qt-cpp.resetQtExt",
- "title": "%qt-cpp.command.resetQtExt.title%",
- "category": "Qt"
}
],
"debuggers": [
diff --git a/qt-cpp/package.nls.json b/qt-cpp/package.nls.json
index da0bab8..6205818 100644
--- a/qt-cpp/package.nls.json
+++ b/qt-cpp/package.nls.json
@@ -6,7 +6,6 @@
"qt-cpp.debugger.lldb.snippet.description": "Launch a Qt application with the lldb debugger",
"qt-cpp.debugger.cppvsdbg.snippet.label": "Qt: Debug with cppvsdbg (Windows)",
"qt-cpp.debugger.cppvsdbg.snippet.description": "Launch a Qt application with the Visual Studio Debugger",
- "qt-cpp.command.resetQtExt.title": "Reset Qt Tools Extension State (For troubleshooting)",
"qt-cpp.debugger.wasm.snippet.label": "Qt: Debug Qt WASM with Chrome",
"qt-cpp.debugger.wasm.snippet.description": "Launch a Qt WebAssembly application with Chrome"
}
diff --git a/qt-cpp/src/extension.ts b/qt-cpp/src/extension.ts
index c86cea3..178dacf 100644
--- a/qt-cpp/src/extension.ts
+++ b/qt-cpp/src/extension.ts
@@ -16,7 +16,7 @@ import {
import { getSelectedQtInstallationPath } from '@cmd/register-qt-path';
import { registerKitDirectoryCommand } from '@cmd/kit-directory';
import { registerMinGWgdbCommand } from '@cmd/mingw-gdb';
-import { registerResetQtExtCommand } from '@cmd/reset-qt-ext';
+import { registerResetCommand } from '@cmd/reset-qt-ext';
import { registerNatvisCommand } from '@cmd/natvis';
import { registerScanForQtKitsCommand } from '@cmd/scan-qt-kits';
import {
@@ -55,7 +55,7 @@ export async function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(
registerKitDirectoryCommand(),
registerMinGWgdbCommand(),
- registerResetQtExtCommand(),
+ registerResetCommand(),
...registerNatvisCommand(),
registerScanForQtKitsCommand(),
registerlaunchTargetFilenameWithoutExtension(),