diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index dd85cae83ff..9ad6a7e7f7c 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2003-04-07 Mikhail Khodjaiants + Changed the message text in the 'getStackDepth' method. + * CThread.java + 2003-04-07 Mikhail Khodjaiants Changed the message generated in the 'targetRequestFailed' methods of CDebugElement. * CDebugElement.java diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CThread.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CThread.java index 4987200205f..7464db74549 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CThread.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CThread.java @@ -1089,7 +1089,7 @@ public class CThread extends CDebugElement { MultiStatus status = new MultiStatus( CDebugCorePlugin.getUniqueIdentifier(), ICDebugInternalConstants.STATUS_CODE_ERROR, - "Unable to get stack depth.", + "Stack is not available.", null ); status.add( new Status( IStatus.ERROR, status.getPlugin(), status.getCode(), e.getMessage(), null ) ); CDebugUtils.error( status, getDebugTarget() );