mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Merge branch 'master' of
https://github.com/NationalSecurityAgency/ghidra into spell
This commit is contained in:
commit
74fae2f644
142 changed files with 1242 additions and 1568 deletions
|
@ -174,7 +174,7 @@ public class VTSubToolManager implements VTControllerListener, OptionsChangeList
|
|||
return newTool;
|
||||
}
|
||||
|
||||
private DockingActionIf getToolAction(Tool tool, String actionName) {
|
||||
private DockingActionIf getToolAction(PluginTool tool, String actionName) {
|
||||
Set<DockingActionIf> actions = tool.getDockingActionsByOwnerName(ToolConstants.TOOL_OWNER);
|
||||
for (DockingActionIf action : actions) {
|
||||
if (action.getName().equals(actionName)) {
|
||||
|
|
|
@ -219,7 +219,7 @@ public class VTFunctionAssociationProvider extends ComponentProviderAdapter
|
|||
}
|
||||
|
||||
@Override
|
||||
public List<DockingActionIf> getPopupActions(DockingTool tool, ActionContext context) {
|
||||
public List<DockingActionIf> getPopupActions(Tool tool, ActionContext context) {
|
||||
if (context.getComponentProvider() == this) {
|
||||
ListingCodeComparisonPanel dualListingPanel =
|
||||
functionComparisonPanel.getDualListingPanel();
|
||||
|
|
|
@ -452,7 +452,7 @@ public class VTMarkupItemsTableProvider extends ComponentProviderAdapter
|
|||
}
|
||||
|
||||
@Override
|
||||
public List<DockingActionIf> getPopupActions(DockingTool tool, ActionContext context) {
|
||||
public List<DockingActionIf> getPopupActions(Tool tool, ActionContext context) {
|
||||
ListingCodeComparisonPanel dualListingPanel = functionComparisonPanel.getDualListingPanel();
|
||||
if (context.getComponentProvider() == this && dualListingPanel != null) {
|
||||
ListingPanel sourcePanel = dualListingPanel.getLeftPanel();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue