Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-01-25 11:06:21 +0000
committerUwe Stieber2013-01-25 11:06:57 +0000
commitd64077bd618263ff6a07f30c63b6a29c597607c9 (patch)
tree310f28f6f6a526ba8d94eafdfcb0e0352027e3d0 /plugins
parent301bf1940b24b9e90d4e06f6a9b3debea13b7199 (diff)
downloadorg.eclipse.tcf-d64077bd618263ff6a07f30c63b6a29c597607c9.tar.gz
org.eclipse.tcf-d64077bd618263ff6a07f30c63b6a29c597607c9.tar.xz
org.eclipse.tcf-d64077bd618263ff6a07f30c63b6a29c597607c9.zip
Target Explorer: Allow to run Eclipse (TCF) diagnostics tests from the System Manager tree directly
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TestErrorsDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TestErrorsDialog.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TestErrorsDialog.java
index 1d7b28842..bb2b30ff7 100644
--- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TestErrorsDialog.java
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/launch/TestErrorsDialog.java
@@ -27,7 +27,7 @@ import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
-class TestErrorsDialog extends Dialog {
+public class TestErrorsDialog extends Dialog {
private static final int
SIZING_TEXT_WIDTH = 600,
@@ -37,7 +37,7 @@ class TestErrorsDialog extends Dialog {
private Image image;
private Text text;
- TestErrorsDialog(Shell parent, Image image, Collection<Throwable> errors) {
+ public TestErrorsDialog(Shell parent, Image image, Collection<Throwable> errors) {
super(parent);
this.image = image;
this.errors = errors;

Back to the top