Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Pesch2014-01-16 08:39:12 +0000
committerDoug Schaefer2014-01-16 15:46:50 +0000
commiteb5c0c8a55d92f360c73bb17efb4a9718cbf08f5 (patch)
treec1c2365df722bef06b815895925fd98ea5309a88 /core/org.eclipse.cdt.core/plugin.properties
parent93c60329b8abc3cfa003d3fd16c6a8715e5f3ba2 (diff)
downloadorg.eclipse.cdt-eb5c0c8a55d92f360c73bb17efb4a9718cbf08f5.tar.gz
org.eclipse.cdt-eb5c0c8a55d92f360c73bb17efb4a9718cbf08f5.tar.xz
org.eclipse.cdt-eb5c0c8a55d92f360c73bb17efb4a9718cbf08f5.zip
Bug 425538 - Syntax errors in QML reported as "C/C++ Problems" because errors from Qt Linguist
The problem is solved by allowing to ignore duplicated markers in case there is already loaded a plugin that could handle QML files The ProblemMarkerFilter extension point allows to filter out unneeded problem markers. For example during building of Qt base project with QML files tool Qt Linguist could report syntax errors in some qml file. These errors are presented as "C/C++ Problems" in qml files because they match format CDT expects for errors. If there is already installed plug-in that handles QML files it is a wise to ignore such errors because they are already reported as "QML Problems" with more meaningful descriptions. Change-Id: I3a0a1b58e9690bed9c2774e4328760c695d54a54 Signed-off-by: Daniel Pesch <dpesch@blackberry.com> Reviewed-on: https://git.eclipse.org/r/20581 Tested-by: Hudson CI Reviewed-by: Andrew Eidsness <eclipse@jfront.com> Reviewed-by: Doug Schaefer <dschaefer@qnx.com> IP-Clean: Doug Schaefer <dschaefer@qnx.com>
Diffstat (limited to 'core/org.eclipse.cdt.core/plugin.properties')
-rwxr-xr-xcore/org.eclipse.cdt.core/plugin.properties2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/plugin.properties b/core/org.eclipse.cdt.core/plugin.properties
index f06189e829e..9f72cc6d3a7 100755
--- a/core/org.eclipse.cdt.core/plugin.properties
+++ b/core/org.eclipse.cdt.core/plugin.properties
@@ -138,3 +138,5 @@ uncPathConverter.name = UNC Path Converter
ScannerInfoExtensionLanguageSettingsProvider.name=Contributed ScannerInfo Entries
PathEntryScannerInfoLanguageSettingsProvider.name=Contributed PathEntry Containers
ReferencedProjectsLanguageSettingsProvider.name=Exported Entries from Referenced Projects
+
+problemMarkerFilter.name=Problem Marker Filter

Back to the top