IDEA-56925: Remote debugging broken (linux, tomcat)

This commit is contained in:
nik
2010-07-29 16:11:36 +04:00
parent 952ff674a3
commit c1dbbf34e8
3 changed files with 5 additions and 5 deletions
@@ -16,13 +16,12 @@
package com.intellij.execution.ui;
import com.intellij.openapi.ui.ComponentContainer;
import javax.swing.*;
import org.jetbrains.annotations.NonNls;
/**
* @author Eugene Zhuravlev
* Date: Apr 20, 2004
*/
public interface ExecutionConsole extends ComponentContainer {
@NonNls String CONSOLE_CONTENT_ID = "ConsoleContent";
}
@@ -157,7 +157,7 @@ public class RunContentBuilder implements LogConsoleManager, Disposable {
}
}
final Content consoleContent = ui.createContent("Console", console.getComponent(), "Console",
final Content consoleContent = ui.createContent(ExecutionConsole.CONSOLE_CONTENT_ID, console.getComponent(), "Console",
IconLoader.getIcon("/debugger/console.png"),
console.getPreferredFocusableComponent());
@@ -15,11 +15,12 @@
*/
package com.intellij.debugger.ui;
import com.intellij.execution.ui.ExecutionConsole;
import org.jetbrains.annotations.NonNls;
public interface DebuggerContentInfo {
@NonNls String CONSOLE_CONTENT = "ConsoleContent";
@NonNls String CONSOLE_CONTENT = ExecutionConsole.CONSOLE_CONTENT_ID;
@NonNls String THREADS_CONTENT = "ThreadsContent";
@NonNls String VARIABLES_CONTENT = "VariablesContent";
@NonNls String FRAME_CONTENT = "FrameContent";