Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2019-08-05 12:53:31 +0000
committerMickael Istria2019-08-05 13:08:52 +0000
commit6fb4f653c9bc16088a19860f235898b1b7e4fe09 (patch)
tree17e33ebd57e35b58d1eddb948e3f7e8029be12c2 /org.eclipse.ui.genericeditor.tests/plugin.xml
parent607288719f0b9ee2a5a9383dc71663a83d1d9c07 (diff)
downloadeclipse.platform.text-6fb4f653c9bc16088a19860f235898b1b7e4fe09.tar.gz
eclipse.platform.text-6fb4f653c9bc16088a19860f235898b1b7e4fe09.tar.xz
eclipse.platform.text-6fb4f653c9bc16088a19860f235898b1b7e4fe09.zip
Bug 513034 - Improvement to extension point
* Rename extension point to simpler "icons" * Rename contentTypeId to just contentType (like other extensions) * Rename class to convention Change-Id: I57d69658cbf8998e16c3ccb7b1d6430f8e5d01e8 Signed-off-by: Mickael Istria <mistria@redhat.com>
Diffstat (limited to 'org.eclipse.ui.genericeditor.tests/plugin.xml')
-rw-r--r--org.eclipse.ui.genericeditor.tests/plugin.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.ui.genericeditor.tests/plugin.xml b/org.eclipse.ui.genericeditor.tests/plugin.xml
index 5d45eb65a30..c2a259aa126 100644
--- a/org.eclipse.ui.genericeditor.tests/plugin.xml
+++ b/org.eclipse.ui.genericeditor.tests/plugin.xml
@@ -266,13 +266,13 @@
<extension
point="org.eclipse.ui.genericeditor.icons">
<icon
- contentTypeId="org.eclipse.ui.genericeditor.tests.content-type"
+ contentType="org.eclipse.ui.genericeditor.tests.content-type"
icon="icons/newfile_wiz.png"/>
<icon
- contentTypeId="org.eclipse.ui.genericeditor.tests.specialized-content-type"
+ contentType="org.eclipse.ui.genericeditor.tests.specialized-content-type"
icon="icons/newfolder_wiz.png"/>
<icon
- contentTypeId="org.eclipse.ui.genericeditor.tests.sub-specialized-content-type"
+ contentType="org.eclipse.ui.genericeditor.tests.sub-specialized-content-type"
icon="platform:/plugin/org.eclipse.ui.ide/icons/full/etool16/newprj_wiz.png"/>
</extension>
</plugin>

Back to the top