Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornick2003-12-16 02:36:30 +0000
committernick2003-12-16 02:36:30 +0000
commitd2dca9ef078465191e38e526b84e5433e9bd31fa (patch)
treecd203983138bf560816ce2263229842b4d67328b
parent20b2b0671d82ba61255bd9abf42a1500a64ac882 (diff)
downloadeclipse.platform.text-d2dca9ef078465191e38e526b84e5433e9bd31fa.tar.gz
eclipse.platform.text-d2dca9ef078465191e38e526b84e5433e9bd31fa.tar.xz
eclipse.platform.text-d2dca9ef078465191e38e526b84e5433e9bd31fa.zip
Fix for missing name on annotationTypes ext. pointv200312160800v20031215a
-rw-r--r--org.eclipse.ui.editors/plugin.properties1
-rw-r--r--org.eclipse.ui.editors/plugin.xml2
2 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.ui.editors/plugin.properties b/org.eclipse.ui.editors/plugin.properties
index 5e5630befdc..925d4aff4b7 100644
--- a/org.eclipse.ui.editors/plugin.properties
+++ b/org.eclipse.ui.editors/plugin.properties
@@ -14,6 +14,7 @@ providerName= Eclipse.org
ExtPoint.markerUpdater= Marker Updater
ExtPoint.documentProvider= Document Provider
ExtPoint.markerAnnotationSpecification= Marker Annotation Specification
+ExtPoint.annotationTypes= Annotation Types
command.custom.description = Change the encoding to a custom encoding
command.custom.name = Custom Encoding
diff --git a/org.eclipse.ui.editors/plugin.xml b/org.eclipse.ui.editors/plugin.xml
index 3304e97bc9a..45350203773 100644
--- a/org.eclipse.ui.editors/plugin.xml
+++ b/org.eclipse.ui.editors/plugin.xml
@@ -27,7 +27,7 @@
<extension-point id="documentProviders" name="%ExtPoint.documentProviders" schema="schema/documentProviders.exsd"/>
<extension-point id="markerUpdaters" name="%ExtPoint.markerUpdaters" schema="schema/markerUpdaters.exsd"/>
<extension-point id="markerAnnotationSpecification" name="%ExtPoint.markerAnnotationSpecification" schema="schema/markerAnnotationSpecification.exsd"/>
- <extension-point id="annotationTypes" schema="schema/annotationTypes.exsd"/>
+ <extension-point id="annotationTypes" name="%ExtPoint.annotationTypes" schema="schema/annotationTypes.exsd"/>
<extension
point="org.eclipse.ui.commands">

Back to the top