mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
e07c83334d
11 changed files with 43 additions and 50 deletions
|
@ -62,7 +62,7 @@ public class AboutDomainObjectUtils {
|
|||
if (helpLocation != null) {
|
||||
dialog.setHelpLocation(helpLocation);
|
||||
}
|
||||
tool.showDialog(dialog, (Component) null);
|
||||
tool.showDialog(dialog);
|
||||
}
|
||||
|
||||
private static void addInfo(JPanel panel, String name, String value) {
|
||||
|
|
|
@ -128,7 +128,8 @@ public class FindCheckoutsDialog extends DialogComponentProvider {
|
|||
|
||||
@Override
|
||||
public ActionContext getActionContext(MouseEvent event) {
|
||||
return new ProjectDataActionContext(null, null, null, null, getFileList(), null, true);
|
||||
return new ProjectDataActionContext(null, folder.getProjectData(), null, null,
|
||||
getFileList(), null, true);
|
||||
}
|
||||
|
||||
private class MyCellRenderer extends GTableCellRenderer {
|
||||
|
|
|
@ -75,7 +75,7 @@ public class VersionControlShowHistoryAction extends VersionControlAction {
|
|||
}
|
||||
|
||||
VersionHistoryDialog dialog = new VersionHistoryDialog(domainFiles.get(0));
|
||||
tool.showDialog(dialog, tool.getToolFrame());
|
||||
tool.showDialog(dialog);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue