mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for PR 39680: Gash in error message for memory view.
This commit is contained in:
parent
9f964e420c
commit
cc49de64a7
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-09-09 Mikhail Khodjaiants
|
||||||
|
Fix for PR 39680: Gash in error message for memory view.
|
||||||
|
* CDebugModel.java
|
||||||
|
|
||||||
2003-09-09 Mikhail Khodjaiants
|
2003-09-09 Mikhail Khodjaiants
|
||||||
Final fix for PR 39484: Move 'getType' method from ICDIVariable to ICDIVaraibleObject.
|
Final fix for PR 39484: Move 'getType' method from ICDIVariable to ICDIVaraibleObject.
|
||||||
* CArrayPartition.java
|
* CArrayPartition.java
|
||||||
|
|
|
@ -613,7 +613,7 @@ public class CDebugModel
|
||||||
throw new DebugException( new Status( IStatus.ERROR,
|
throw new DebugException( new Status( IStatus.ERROR,
|
||||||
getPluginIdentifier(),
|
getPluginIdentifier(),
|
||||||
DebugException.TARGET_REQUEST_FAILED,
|
DebugException.TARGET_REQUEST_FAILED,
|
||||||
e.getMessage(),
|
e.getDetailMessage(),
|
||||||
null ) );
|
null ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -650,7 +650,7 @@ public class CDebugModel
|
||||||
throw new DebugException( new Status( IStatus.ERROR,
|
throw new DebugException( new Status( IStatus.ERROR,
|
||||||
getPluginIdentifier(),
|
getPluginIdentifier(),
|
||||||
DebugException.TARGET_REQUEST_FAILED,
|
DebugException.TARGET_REQUEST_FAILED,
|
||||||
e.getMessage(),
|
e.getDetailMessage(),
|
||||||
null ) );
|
null ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue