LCL, fix DBGrid shows '(blob)' on all Blob fields, from Petr-K, issue #26061

git-svn-id: trunk@44795 -
This commit is contained in:
jesus 2014-04-23 18:55:50 +00:00
parent 48c19eb556
commit 907159d8a2

View File

@ -1907,10 +1907,7 @@ begin
{$ifdef dbgGridPaint}
DbgOut(' Field=%s',[F.FieldName]);
{$endif}
if F.dataType <> ftBlob then
S := F.DisplayText
else
S := '(blob)';
S := F.DisplayText;
end else
S := '';
{$ifdef dbggridpaint}