aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppcheck
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2022-10-14 14:52:54 +0200
committerEike Ziller <eike.ziller@qt.io>2022-10-14 13:26:45 +0000
commit8db0d3b0ff5fd5ea191928d14441e13f387cb83a (patch)
treeb011316fd1238fe46eae519654440511a5d9af9a /src/plugins/cppcheck
parentec430787e5aa1f24d678c6b62244eb33f3725112 (diff)
Fix lupdate issues
- missing Q_DECLARE_TR_FUNCTIONS - some full qualifications needed for confused lupdate - avoid breaking some translations from former TaskListPlugin, VcsCommand and highlighter settings refactoring Change-Id: Ia3b34095512a7bad6903f0aff6095313ee39e3e4 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/cppcheck')
-rw-r--r--src/plugins/cppcheck/cppcheckplugin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppcheckplugin.cpp b/src/plugins/cppcheck/cppcheckplugin.cpp
index c40f1ee6c66..18c4df53481 100644
--- a/src/plugins/cppcheck/cppcheckplugin.cpp
+++ b/src/plugins/cppcheck/cppcheckplugin.cpp
@@ -39,7 +39,8 @@ public:
CppcheckOptionsPage options;
DiagnosticsModel manualRunModel;
CppcheckTool manualRunTool;
- Utils::Perspective perspective{Constants::PERSPECTIVE_ID, CppcheckPlugin::tr("Cppcheck")};
+ Utils::Perspective perspective{Constants::PERSPECTIVE_ID,
+ ::Cppcheck::Internal::CppcheckPlugin::tr("Cppcheck")};
QAction *manualRunAction;
void startManualRun();