1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-13 19:25:38 +02:00

2005-05-27 Alain Magloire

Use the fCDIVariable instead of fCDIVariableObject when possible.
	* src/org/eclipse/cdt/debug/internal/core/model/CVariable.java
This commit is contained in:
Alain Magloire 2005-06-27 15:22:16 +00:00
parent 9f57f32a20
commit a729a32e61
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2005-05-27 Alain Magloire
Use the fCDIVariable instead of fCDIVariableObject when possible.
* src/org/eclipse/cdt/debug/internal/core/model/CVariable.java
2005-05-23 Mikhail Khodjaiants 2005-05-23 Mikhail Khodjaiants
Bug 100756: Breakpoints listed twice in Breakpoints view. Bug 100756: Breakpoints listed twice in Breakpoints view.
* CBreakpointManager.java * CBreakpointManager.java

View file

@ -129,6 +129,9 @@ public class CVariable extends AbstractCVariable implements ICDIEventListener {
} }
private ICDIVariableDescriptor getCDIVariableObject() { private ICDIVariableDescriptor getCDIVariableObject() {
if (fCDIVariable != null) {
return fCDIVariable;
}
return fCDIVariableObject; return fCDIVariableObject;
} }