Skip to content

Commit

Permalink
Merge pull request #7689 from matthiasblaesing/cpp_lite_action_refere…
Browse files Browse the repository at this point in the history
…nces

.c/.h/.hpp files: Register WhereUsedAction and RenameAction in correct mime paths
  • Loading branch information
ebarboni committed Sep 2, 2024
2 parents 9fc725a + 129b8c8 commit 65e9c8a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@
position = 1400
),
@ActionReference(
path = "Editors/" + MIMETypes.CPP + "/Popup",
path = "Editors/" + MIMETypes.C + "/Popup",
id = @ActionID(category = "Refactoring", id = "org.netbeans.modules.refactoring.api.ui.WhereUsedAction"),
position = 1400
),
@ActionReference(
path = "Editors/" + MIMETypes.CPP + "/Popup",
path = "Editors/" + MIMETypes.C + "/Popup",
id = @ActionID(category = "Refactoring", id = "org.netbeans.modules.refactoring.api.ui.RenameAction"),
position = 1500,
separatorAfter = 1550
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@
position = 1400
),
@ActionReference(
path = "Editors/" + MIMETypes.CPP + "/Popup",
path = "Editors/" + MIMETypes.H + "/Popup",
id = @ActionID(category = "Refactoring", id = "org.netbeans.modules.refactoring.api.ui.WhereUsedAction"),
position = 1400
),
@ActionReference(
path = "Editors/" + MIMETypes.CPP + "/Popup",
path = "Editors/" + MIMETypes.H + "/Popup",
id = @ActionID(category = "Refactoring", id = "org.netbeans.modules.refactoring.api.ui.RenameAction"),
position = 1500,
separatorAfter = 1550
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@
position = 1400
),
@ActionReference(
path = "Editors/" + MIMETypes.CPP + "/Popup",
path = "Editors/" + MIMETypes.HPP + "/Popup",
id = @ActionID(category = "Refactoring", id = "org.netbeans.modules.refactoring.api.ui.WhereUsedAction"),
position = 1400
),
@ActionReference(
path = "Editors/" + MIMETypes.CPP + "/Popup",
path = "Editors/" + MIMETypes.HPP + "/Popup",
id = @ActionID(category = "Refactoring", id = "org.netbeans.modules.refactoring.api.ui.RenameAction"),
position = 1500,
separatorAfter = 1550
Expand Down

0 comments on commit 65e9c8a

Please sign in to comment.