Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2005-05-06 17:51:49 +0000
committerAlain Magloire2005-05-06 17:51:49 +0000
commite8eb7cd78b04a473d72bd090cab86f70501e6420 (patch)
treeb1a535fb79bfeb3b9684afb3945606a57df540af
parent1843e1b6a0ac5c62d4a1b3073ddbbce4559147fb (diff)
downloadorg.eclipse.cdt-e8eb7cd78b04a473d72bd090cab86f70501e6420.tar.gz
org.eclipse.cdt-e8eb7cd78b04a473d72bd090cab86f70501e6420.tar.xz
org.eclipse.cdt-e8eb7cd78b04a473d72bd090cab86f70501e6420.zip
Fix for PR 93590
-rw-r--r--build/org.eclipse.cdt.make.ui/plugin.properties2
-rw-r--r--build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/IMakefileEditorActionDefinitionIds.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/build/org.eclipse.cdt.make.ui/plugin.properties b/build/org.eclipse.cdt.make.ui/plugin.properties
index 622752a6386..b38881cc285 100644
--- a/build/org.eclipse.cdt.make.ui/plugin.properties
+++ b/build/org.eclipse.cdt.make.ui/plugin.properties
@@ -58,7 +58,7 @@ ActionDefinition.comment.description= Turn the selected lines into # style comme
ActionDefinition.uncomment.name= Uncomment
ActionDefinition.uncomment.description= Uncomment the selected # style comment lines
-ActionDefinition.opendecl.name= Open declation
+ActionDefinition.opendecl.name= Open declaration
ActionDefinition.opendecl.description=Follow to the directive definition
MakefileEditor.name=Makefile Editor
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/IMakefileEditorActionDefinitionIds.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/IMakefileEditorActionDefinitionIds.java
index 340dd0d1187..98dd7dc75f8 100644
--- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/IMakefileEditorActionDefinitionIds.java
+++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/editor/IMakefileEditorActionDefinitionIds.java
@@ -17,9 +17,9 @@ import org.eclipse.ui.texteditor.ITextEditorActionDefinitionIds;
*/
public interface IMakefileEditorActionDefinitionIds extends ITextEditorActionDefinitionIds {
- final String UNCOMMENT = "org.eclipse.cdt.make.ui.edit.text.makefile.comment"; //$NON-NLS-1$
+ final String UNCOMMENT = "org.eclipse.cdt.make.ui.edit.text.makefile.uncomment"; //$NON-NLS-1$
- final String COMMENT = "org.eclipse.cdt.make.ui.edit.text.makefile.uncomment"; //$NON-NLS-1$
+ final String COMMENT = "org.eclipse.cdt.make.ui.edit.text.makefile.comment"; //$NON-NLS-1$
final String OPEN_DECLARATION = "org.eclipse.cdt.make.ui.edit.text.makefile.opendcl"; //$NON-NLS-1$

Back to the top