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:
parent
1843e1b6a0
commit
e8eb7cd78b
2 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ ActionDefinition.comment.description= Turn the selected lines into # style comme
|
||||||
ActionDefinition.uncomment.name= Uncomment
|
ActionDefinition.uncomment.name= Uncomment
|
||||||
ActionDefinition.uncomment.description= Uncomment the selected # style comment lines
|
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
|
ActionDefinition.opendecl.description=Follow to the directive definition
|
||||||
|
|
||||||
MakefileEditor.name=Makefile Editor
|
MakefileEditor.name=Makefile Editor
|
||||||
|
|
|
@ -17,9 +17,9 @@ import org.eclipse.ui.texteditor.ITextEditorActionDefinitionIds;
|
||||||
*/
|
*/
|
||||||
public interface IMakefileEditorActionDefinitionIds extends 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$
|
final String OPEN_DECLARATION = "org.eclipse.cdt.make.ui.edit.text.makefile.opendcl"; //$NON-NLS-1$
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue