mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Use separate help ids for different svn settings configurables
This commit is contained in:
@@ -49,14 +49,15 @@ public abstract class SvnConfigurable extends ConfigurableBase<ConfigurableUi<Sv
|
||||
protected SvnConfigurable(@NotNull Project project,
|
||||
@NotNull String displayName,
|
||||
@NotNull Supplier<? extends ConfigurableUi<SvnConfiguration>> uiSupplier) {
|
||||
this(project, ID + "." + displayName, displayName, uiSupplier);
|
||||
this(project, ID + "." + displayName, displayName, uiSupplier, HELP_ID + "." + displayName);
|
||||
}
|
||||
|
||||
protected SvnConfigurable(@NotNull Project project,
|
||||
@NotNull String id,
|
||||
@NotNull String displayName,
|
||||
@NotNull Supplier<? extends ConfigurableUi<SvnConfiguration>> uiSupplier) {
|
||||
super(id, displayName, HELP_ID);
|
||||
@NotNull Supplier<? extends ConfigurableUi<SvnConfiguration>> uiSupplier,
|
||||
@NotNull String helpId) {
|
||||
super(id, displayName, helpId);
|
||||
myProject = project;
|
||||
myUiSupplier = uiSupplier;
|
||||
}
|
||||
@@ -74,7 +75,7 @@ public abstract class SvnConfigurable extends ConfigurableBase<ConfigurableUi<Sv
|
||||
|
||||
public static class General extends SvnConfigurable {
|
||||
public General(@NotNull Project project) {
|
||||
super(project, ID, DISPLAY_NAME, () -> new GeneralSettingsPanel(project));
|
||||
super(project, ID, DISPLAY_NAME, () -> new GeneralSettingsPanel(project), HELP_ID);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user