mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 20:00:47 +02:00
Debugger, was returning UnicodeStrings as uppercase
git-svn-id: trunk@27348 -
This commit is contained in:
parent
2767314c13
commit
3290f05d67
@ -2590,7 +2590,7 @@ begin
|
||||
if e <> 0 then Exit;
|
||||
|
||||
S := Lowercase(ResultInfo.TypeName);
|
||||
case StringCase(S, ['char', 'character', 'ansistring', '__vtbl_ptr_type', 'wchar']) of
|
||||
case StringCase(S, ['char', 'character', 'ansistring', '__vtbl_ptr_type', 'wchar', 'widechar']) of
|
||||
0, 1, 2: begin
|
||||
if Addr = 0
|
||||
then
|
||||
@ -2608,7 +2608,7 @@ begin
|
||||
AResult := 'class of ' + S + ' ' + AResult;
|
||||
end;
|
||||
end;
|
||||
4: begin
|
||||
4,5: begin
|
||||
// widestring handling
|
||||
if Addr = 0
|
||||
then AResult := ''''''
|
||||
|
Loading…
Reference in New Issue
Block a user