Merge remote-tracking branch 'origin/patch'

This commit is contained in:
ghidra1 2019-12-05 11:48:31 -05:00
commit e07c83334d
11 changed files with 43 additions and 50 deletions

View file

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

View file

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

View file

@ -75,7 +75,7 @@ public class VersionControlShowHistoryAction extends VersionControlAction {
}
VersionHistoryDialog dialog = new VersionHistoryDialog(domainFiles.get(0));
tool.showDialog(dialog, tool.getToolFrame());
tool.showDialog(dialog);
}
}