Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2014-03-05 17:47:23 +0000
committerEugene Tarassov2014-03-05 17:47:23 +0000
commit8c0bc30f909d48f8e95d0aaf7d1b20d26dd69173 (patch)
tree4b9a374e18fa29a1f73556fccf92714407f6ef0b /plugins/org.eclipse.tcf.cdt.ui/src
parentfa937e47716a0694cbd8f3ea8f1a9123a3820345 (diff)
downloadorg.eclipse.tcf-8c0bc30f909d48f8e95d0aaf7d1b20d26dd69173.tar.gz
org.eclipse.tcf-8c0bc30f909d48f8e95d0aaf7d1b20d26dd69173.tar.xz
org.eclipse.tcf-8c0bc30f909d48f8e95d0aaf7d1b20d26dd69173.zip
TCF Debugger: show more info about breakpoint in the Debug view when a context is stopped by a breakpoint hit
Diffstat (limited to 'plugins/org.eclipse.tcf.cdt.ui/src')
-rw-r--r--plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/breakpoints/TCFThreadFilterEditor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/breakpoints/TCFThreadFilterEditor.java b/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/breakpoints/TCFThreadFilterEditor.java
index 0726be33b..07dad8386 100644
--- a/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/breakpoints/TCFThreadFilterEditor.java
+++ b/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/breakpoints/TCFThreadFilterEditor.java
@@ -485,7 +485,7 @@ public class TCFThreadFilterEditor {
fThreadViewer.refresh();
fFilteredContexts.clear();
for (Context ctx : fContexts) {
- fCheckHandler.updateParentCheckState(ctx);
+ fCheckHandler.updateParentCheckState(ctx);
}
}
}
@@ -511,7 +511,7 @@ public class TCFThreadFilterEditor {
else {
String result = null;
TCFContextQueryExpressionDialog dlg = new TCFContextQueryExpressionDialog(parentShell, attrsList, scopeExprCombo.getText());
-
+
if (dlg.open() == Window.OK) {
result = dlg.getExpression();
}

Back to the top