| author | Scott Tepavich | 2012-07-25 12:42:11 (EDT) |
|---|---|---|
| committer | Scott Tepavich | 2012-07-25 12:42:11 (EDT) |
| commit | 2248acf49a80e3af834ad1e06e7873542d1ebbdc (patch) (side-by-side diff) | |
| tree | 697e9e2621cc328eb1e63134b0fc1ed71c886230 | |
| parent | 6972827b543edffe3737edf15f7cfc637ef76f5c (diff) | |
| download | org.eclipse.tcf-2248acf49a80e3af834ad1e06e7873542d1ebbdc.zip org.eclipse.tcf-2248acf49a80e3af834ad1e06e7873542d1ebbdc.tar.gz org.eclipse.tcf-2248acf49a80e3af834ad1e06e7873542d1ebbdc.tar.bz2 | |
Bug [385965] Planting Hardware Breakpoint fails.refs/changes/65/6965/1
Change type property from int to String.
Change-Id: I1778c162c887db11fca137d9efd3c5f431385054
| -rw-r--r-- | plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java index 3b2aae9..8dcb19c 100644 --- a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java +++ b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFBreakpointsModel.java @@ -567,7 +567,7 @@ public class TCFBreakpointsModel { cdt_type = cdt_type | ATTR_TYPE_TEMPORARY; m.put(ATTR_TYPE, cdt_type); } - Integer type = (Integer)p.get(IBreakpoints.PROP_TYPE); + String type = (String)p.get(IBreakpoints.PROP_TYPE); if (type != null) { Integer cdt_type = (Integer)m.get(ATTR_TYPE); cdt_type = cdt_type != null ? cdt_type : 0; |

