mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-01-09 14:08:03 -05:00
Merge remote-tracking branch 'origin/GP-0-dragonmacher-test-fixes-1-29-25' into Ghidra_11.3
This commit is contained in:
@@ -322,7 +322,6 @@ public class SourceFilesTablePlugin extends ProgramPlugin implements OptionsChan
|
||||
|
||||
}
|
||||
|
||||
|
||||
private void initOptions(ToolOptions options) {
|
||||
options.registerOption(USE_EXISTING_AS_DEFAULT_OPTION_NAME, true,
|
||||
new HelpLocation(getName(), "Use_Existing_As_Default"),
|
||||
@@ -336,8 +335,8 @@ public class SourceFilesTablePlugin extends ProgramPlugin implements OptionsChan
|
||||
() -> new StringWithChoicesEditor(VIEWERS));
|
||||
selectedViewer = options.getString(SELECTED_VIEWER_OPTION_NAME, VS_CODE);
|
||||
options.addOptionsChangeListener(this);
|
||||
|
||||
options.setOptionsHelpLocation(
|
||||
new HelpLocation(getName(), "Source_Files_Table_Plugin_Options"));
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -243,6 +243,7 @@ public class SourceMapFieldFactory extends FieldFactory {
|
||||
"Show source file identifier info");
|
||||
showIdentifier = fieldOptions.getBoolean(SHOW_IDENTIFIER_OPTION_NAME, false);
|
||||
|
||||
fieldOptions.getOptions(GROUP_TITLE).setOptionsHelpLocation(helpLoc);
|
||||
}
|
||||
|
||||
private List<SourceMapEntry> getSourceMapEntries(CodeUnit cu) {
|
||||
|
||||
@@ -1007,13 +1007,15 @@ public class CodeBrowserOptionsTest extends AbstractGhidraHeadedIntegrationTest
|
||||
List<HelpLocation> nestedHelp = getParentHelpLocations(options, name);
|
||||
for (HelpLocation help : nestedHelp) {
|
||||
if (help != null && !isValidHelpLocation(help)) {
|
||||
missing.add("Bad help location: " + help.toString());
|
||||
missing.add("Bad parent help for path: " + options.getName() + "." + name +
|
||||
"; help: " + help.toString() + "\nMake sure your options parent node " +
|
||||
"has a help location set, in addition to the individual options " +
|
||||
"node");
|
||||
}
|
||||
}
|
||||
|
||||
// it has a help location; is it valid?
|
||||
if (hl != null && !isValidHelpLocation(hl)) {
|
||||
isValidHelpLocation(hl);
|
||||
missing.add(options.getName() + "." + name);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user