1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for PR 93590

This commit is contained in:
Alain Magloire 2005-05-06 17:51:49 +00:00
parent 1843e1b6a0
commit e8eb7cd78b
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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$