1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 21:45:22 +02:00

[249392] "Other.." displayed in details pane for register selections

This commit is contained in:
Ted Williams 2008-10-01 20:27:54 +00:00
parent 57661f4db9
commit 0927752dfd

View file

@ -435,6 +435,9 @@ public class NumberFormatDetailPane implements IDetailPane, IAdaptable, IPropert
else if ( str == IFormattedValues.DECIMAL_FORMAT) { else if ( str == IFormattedValues.DECIMAL_FORMAT) {
completedFormatStrings.add("Decimal : " + getData().getFormattedValue()); //$NON-NLS-1$ completedFormatStrings.add("Decimal : " + getData().getFormattedValue()); //$NON-NLS-1$
} }
else if ( str == IFormattedValues.STRING_FORMAT) {
completedFormatStrings.add("String : " + getData().getFormattedValue()); //$NON-NLS-1$
}
else { else {
completedFormatStrings.add("Other.. : " + getData().getFormattedValue()); //$NON-NLS-1$ completedFormatStrings.add("Other.. : " + getData().getFormattedValue()); //$NON-NLS-1$
} }