mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Fix for bug 82858: NPE when adding global variable to variable view.
This commit is contained in:
parent
796d57cf24
commit
b0fe8a0287
3 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-01-18 Mikhail Khodjaiants
|
||||||
|
Fix for bug 82858: NPE when adding global variable to variable view.
|
||||||
|
* CDebugTarget.java
|
||||||
|
* CVariableFactory.java
|
||||||
|
|
||||||
2005-01-18 Mikhail Khodjaiants
|
2005-01-18 Mikhail Khodjaiants
|
||||||
Fix for bug 82800: Make "Resume At Line" action retargettable.
|
Fix for bug 82800: Make "Resume At Line" action retargettable.
|
||||||
CDebugElement should provide an adapter to ICDebugTarget.
|
CDebugElement should provide an adapter to ICDebugTarget.
|
||||||
|
|
|
@ -42,7 +42,7 @@ public class CVariableFactory {
|
||||||
}
|
}
|
||||||
|
|
||||||
public IPath getPath() {
|
public IPath getPath() {
|
||||||
return path;
|
return ( path != null ) ? path : new Path( "" ); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue