aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppcheck/cppcheckdiagnosticview.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Debugger: Fix column offset for Links that replaced DiagnosticsLocationDavid Schulz2025-06-171-3/+1
| | | | | | | | | | | Amends a40e803503e4186823e2ca4585c8a4555e89d9c2 The DiagnosticsLocation used 1 based column offset, but the column offset in Link is 0. This removes the need to substract 1 from column before passing the Link to openEditorAt. Change-Id: I81905eff4881320e197d55f5b1a27aa7a3b74864 Reviewed-by: hjk <hjk@qt.io>
* Debugger: Replace DiagnosticsLocation with Utils::Linkhjk2025-02-211-5/+7
| | | | | Change-Id: I41166d4f54468e0953fd3231af9fd52560b7c74c Reviewed-by: David Schulz <david.schulz@qt.io>
* CppCheck: Tr::tr and code cosmeticshjk2023-01-101-8/+6
| | | | | Change-Id: I5e6583984f7dc94e998df3c20840f2ba2e801ab8 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* Remove GPL-3.0+ from license identifiersKai Köhne2023-01-061-1/+1
| | | | | | | | | | | | | | | Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0, this applies only to a hypothetical newer version of GPL, that doesn't exist yet. If such a version emerges, we can still decide to relicense... While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only Change was done by running find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \; Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Use SPDX license identifiersLucie Gérard2022-08-261-24/+2
| | | | | | | | | Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Debugger: filepathify DiagnosticLocationDavid Schulz2021-06-091-1/+1
| | | | | Change-Id: Ibbbf137231b313ec10e3d57c0230217b0c1e0a6c Reviewed-by: hjk <hjk@qt.io>
* Cppcheck: Add ability to manually run cppcheckSergey Morozov2019-12-041-0/+118
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 <nikolai.kosjar@qt.io>