1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Changed the error message for 'switch to stack frame'.

This commit is contained in:
Mikhail Khodjaiants 2002-09-26 17:45:34 +00:00
parent 7c4114a401
commit dbba92a00a

View file

@ -242,7 +242,7 @@ public class CDebugUIPlugin extends AbstractUIPlugin implements ISelectionListen
Shell shell = getActiveWorkbenchShell();
if ( shell != null )
{
IStatus status = new Status( IStatus.ERROR, getUniqueIdentifier(), ICDebugUIConstants.INTERNAL_ERROR, "Error logged from CDT Debug UI: ", t ); //$NON-NLS-1$
IStatus status = new Status( IStatus.ERROR, getUniqueIdentifier(), ICDebugUIConstants.INTERNAL_ERROR, t.getMessage(), null ); //$NON-NLS-1$
ErrorDialog.openError( shell, "Error", message, status );
}
}
@ -372,7 +372,7 @@ public class CDebugUIPlugin extends AbstractUIPlugin implements ISelectionListen
}
catch( DebugException e )
{
errorDialog( e.getMessage(), e );
errorDialog( "Switch to stack frame failed.", e );
}
}
}