diff options
| author | Sergey Morozov <[email protected]> | 2019-11-03 23:00:16 +0300 |
|---|---|---|
| committer | Sergey Morozov <[email protected]> | 2019-12-04 18:15:41 +0000 |
| commit | 0aa95576c282b59fa05a23d1f40da0d270547ae7 (patch) | |
| tree | a7dceb2dc9ae5f989a8a35a418c88e95b2cf4eb0 /src/plugins/cppcheck/cppcheckconstants.h | |
| parent | 07490e76de2ee74df342849978ecafee18c53527 (diff) | |
Cppcheck: Add ability to manually run cppcheck
Run cppcheck on selected files from current project via "Analyze"->"Cppcheck...."
Show results in a separate view in the same manner as ClangTools plugin.
Fixes: QTCREATORBUG-21673
Change-Id: Ibcaf4057a387a990f1da59025f15ba58f996953f
Reviewed-by: Nikolai Kosjar <[email protected]>
Diffstat (limited to 'src/plugins/cppcheck/cppcheckconstants.h')
| -rw-r--r-- | src/plugins/cppcheck/cppcheckconstants.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppcheckconstants.h b/src/plugins/cppcheck/cppcheckconstants.h index 0611fe61272..8d56535fc42 100644 --- a/src/plugins/cppcheck/cppcheckconstants.h +++ b/src/plugins/cppcheck/cppcheckconstants.h @@ -49,7 +49,11 @@ const char SETTINGS_SHOW_OUTPUT[] = "showOutput"; const char SETTINGS_ADD_INCLUDE_PATHS[] = "addIncludePaths"; const char SETTINGS_GUESS_ARGUMENTS[] = "guessArguments"; -const char CHECK_PROGRESS_ID[] = "Cppcheck.Cppcheck.CheckingTask"; +const char CHECK_PROGRESS_ID[] = "Cppcheck.CheckingTask"; + +const char MANUAL_CHECK_PROGRESS_ID[] = "Cppcheck.ManualCheckingTask"; +const char MANUAL_RUN_ACTION[] = "Cppcheck.ManualRun"; +const char PERSPECTIVE_ID[] = "Cppcheck.Perspective"; } // namespace Constants } // namespace Cppcheck |
