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
|
||||
Final fix for PR 39484: Move 'getType' method from ICDIVariable to ICDIVaraibleObject.
|
||||
* CArrayPartition.java
|
||||
|
|
|
@ -613,7 +613,7 @@ public class CDebugModel
|
|||
throw new DebugException( new Status( IStatus.ERROR,
|
||||
getPluginIdentifier(),
|
||||
DebugException.TARGET_REQUEST_FAILED,
|
||||
e.getMessage(),
|
||||
e.getDetailMessage(),
|
||||
null ) );
|
||||
}
|
||||
}
|
||||
|
@ -650,7 +650,7 @@ public class CDebugModel
|
|||
throw new DebugException( new Status( IStatus.ERROR,
|
||||
getPluginIdentifier(),
|
||||
DebugException.TARGET_REQUEST_FAILED,
|
||||
e.getMessage(),
|
||||
e.getDetailMessage(),
|
||||
null ) );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue