From dc043cefa1f841c3fbd8a320e2732e4738fd0f93 Mon Sep 17 00:00:00 2001 From: Michael Golubev Date: Tue, 27 May 2014 15:46:39 +0200 Subject: [PATCH] IDEA-121972 - Map help button of the Clouds page --- .../impl/configuration/RemoteServerConfigurable.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/remote-servers/impl/src/com/intellij/remoteServer/impl/configuration/RemoteServerConfigurable.java b/platform/remote-servers/impl/src/com/intellij/remoteServer/impl/configuration/RemoteServerConfigurable.java index 715f98393317..2c1734a28995 100644 --- a/platform/remote-servers/impl/src/com/intellij/remoteServer/impl/configuration/RemoteServerConfigurable.java +++ b/platform/remote-servers/impl/src/com/intellij/remoteServer/impl/configuration/RemoteServerConfigurable.java @@ -34,6 +34,8 @@ public class RemoteServerConfigurable extends NamedConfigurable> private static final Logger LOG = Logger.getInstance("#" + RemoteServerConfigurable.class.getName()); + private static final String HELP_TOPIC_ID = "reference.settings.clouds"; + private static final int CHANGES_CHECK_TIME = 500; private static final int CONNECTION_CHECK_TIME = 2000; private static final int NO_CHANGES = -1; @@ -150,7 +152,7 @@ public class RemoteServerConfigurable extends NamedConfigurable> @Nullable @Override public String getHelpTopic() { - return null; + return HELP_TOPIC_ID; } @Override