Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Weber2021-06-28 19:04:33 +0000
committerMartin Weber2021-06-28 19:04:33 +0000
commit99ccdd11a4c236502af9556c7c512883897b83dc (patch)
tree227b5f913d501b00eee26d4c65eb536811fad9e7
parent7a1a619b6acbfc75acfe34b4f7e5b05d5ef7208f (diff)
downloadorg.eclipse.cdt-99ccdd11a4c236502af9556c7c512883897b83dc.tar.gz
org.eclipse.cdt-99ccdd11a4c236502af9556c7c512883897b83dc.tar.xz
org.eclipse.cdt-99ccdd11a4c236502af9556c7c512883897b83dc.zip
externalize string
Change-Id: I9d47dd464ba9f9c7b696c2e6f69c2c90abd31071 Signed-off-by: Martin Weber <fifteenknots505@gmail.com>
-rw-r--r--cmake/org.eclipse.cdt.cmake.is.core/plugin.properties3
-rw-r--r--cmake/org.eclipse.cdt.cmake.is.core/plugin.xml2
2 files changed, 3 insertions, 2 deletions
diff --git a/cmake/org.eclipse.cdt.cmake.is.core/plugin.properties b/cmake/org.eclipse.cdt.cmake.is.core/plugin.properties
index a12de8f02fa..c9df4586932 100644
--- a/cmake/org.eclipse.cdt.cmake.is.core/plugin.properties
+++ b/cmake/org.eclipse.cdt.cmake.is.core/plugin.properties
@@ -9,4 +9,5 @@ available under the terms of the Eclipse Public License 2.0\n\
which is available at https://www.eclipse.org/legal/epl-2.0/\n\
\n\
SPDX-License-Identifier: EPL-2.0
-extension-point.name = Detection Participant \ No newline at end of file
+extension-point.name = Detection Participant
+CompileCommandsJsonParserMarker.name = CMake compile_commands.json parser \ No newline at end of file
diff --git a/cmake/org.eclipse.cdt.cmake.is.core/plugin.xml b/cmake/org.eclipse.cdt.cmake.is.core/plugin.xml
index c3fd96ef998..0e629fcbc1b 100644
--- a/cmake/org.eclipse.cdt.cmake.is.core/plugin.xml
+++ b/cmake/org.eclipse.cdt.cmake.is.core/plugin.xml
@@ -5,7 +5,7 @@
"org.eclipse.cdt.cmake.is.core.internal.ui.CompileCommandsJsonParserOptionPage">
<extension
id="CompileCommandsJsonParserMarker"
- name="CMake compile_commands.json parser"
+ name="%CompileCommandsJsonParserMarker.name"
point="org.eclipse.core.resources.markers">
<persistent
value="false">

Back to the top