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:
parent
18a6210a28
commit
d87cffe93a
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ public class CDTDebugModelPresentation extends LabelProvider
|
||||||
ICDISignal signal = ((ICDISignalReceived)info).getSignal();
|
ICDISignal signal = ((ICDISignalReceived)info).getSignal();
|
||||||
String label = target.getName() +
|
String label = target.getName() +
|
||||||
MessageFormat.format( " (Signal ''{0}'' received. Meaning: {1})",
|
MessageFormat.format( " (Signal ''{0}'' received. Meaning: {1})",
|
||||||
new String[] { signal.getName(), signal.getMeaning() } );
|
new String[] { signal.getName(), signal.getDescription() } );
|
||||||
return label;
|
return label;
|
||||||
}
|
}
|
||||||
if ( info != null && info instanceof ICDIWatchpointTrigger )
|
if ( info != null && info instanceof ICDIWatchpointTrigger )
|
||||||
|
|
Loading…
Add table
Reference in a new issue