We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a9a93d commit e4e3986Copy full SHA for e4e3986
1 file changed
com.googlecode.cppcheclipse.core/src/com/googlecode/cppcheclipse/core/IConsole.java
@@ -13,6 +13,9 @@ public interface IConsole {
13
14
public abstract void println(String line) throws IOException;
15
16
- public abstract void show() throws PartInitException;
+ /**
17
+ * Shows the console view (in an async way, this method may be called from non UI-thread)
18
+ */
19
+ public abstract void show();
20
21
}
0 commit comments