1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Refactor side effect getMeaning() change for getDescription()

This commit is contained in:
Alain Magloire 2003-02-03 19:31:13 +00:00
parent 18a6210a28
commit d87cffe93a

View file

@ -368,7 +368,7 @@ public class CDTDebugModelPresentation extends LabelProvider
ICDISignal signal = ((ICDISignalReceived)info).getSignal();
String label = target.getName() +
MessageFormat.format( " (Signal ''{0}'' received. Meaning: {1})",
new String[] { signal.getName(), signal.getMeaning() } );
new String[] { signal.getName(), signal.getDescription() } );
return label;
}
if ( info != null && info instanceof ICDIWatchpointTrigger )