mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Bug 153894: Variable View: Can not format 'short int' to Hex.
Applied patch from James Blackburn (jamesblackburn+eclipse@gmail.com).
This commit is contained in:
parent
95b8581183
commit
8cdf94585a
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-08-22 Mikhail Khodjaiants
|
||||
Bug 153894: Variable View: Can not format 'short int' to Hex.
|
||||
Applied patch from James Blackburn (jamesblackburn+eclipse@gmail.com).
|
||||
* SourceManager.java
|
||||
|
||||
2006-05-25 Mikhail Khodjaiants
|
||||
Bug 137970: No default debugger in C++ managed project.
|
||||
* MIPlugin.java
|
||||
|
|
|
@ -341,7 +341,7 @@ public class SourceManager extends Manager {
|
|||
|
||||
if (isChar && (isSigned || isUnsigned)) {
|
||||
return new CharType(target, typename, isUnsigned);
|
||||
} else if (isShort && (isSigned || isUnsigned)) {
|
||||
} else if (isShort && (isInt || isSigned || isUnsigned)) {
|
||||
return new ShortType(target, typename, isUnsigned);
|
||||
} else if (isInt && (isSigned || isUnsigned)) {
|
||||
return new IntType(target, typename, isUnsigned);
|
||||
|
|
Loading…
Add table
Reference in a new issue