mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-13 11:15: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:
parent
9f57f32a20
commit
a729a32e61
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
Bug 100756: Breakpoints listed twice in Breakpoints view.
|
||||
* CBreakpointManager.java
|
||||
|
|
|
@ -129,6 +129,9 @@ public class CVariable extends AbstractCVariable implements ICDIEventListener {
|
|||
}
|
||||
|
||||
private ICDIVariableDescriptor getCDIVariableObject() {
|
||||
if (fCDIVariable != null) {
|
||||
return fCDIVariable;
|
||||
}
|
||||
return fCDIVariableObject;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue