mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 05:30:59 +02:00
LCL: better debugging
git-svn-id: trunk@33155 -
This commit is contained in:
parent
d2b00f076f
commit
eec9a515ba
@ -203,6 +203,8 @@ begin
|
||||
end;
|
||||
|
||||
procedure TDBLookup.FetchLookupData;
|
||||
var
|
||||
s: String;
|
||||
begin
|
||||
if not Assigned(FControlItems) then
|
||||
Exit;
|
||||
@ -219,7 +221,8 @@ begin
|
||||
if (FLookupCache and not FLookUpFieldIsCached) then
|
||||
FLookupList.Add(FListLink.DataSet.FieldValues[FKeyFieldNames],
|
||||
FListField.Value);
|
||||
FControlItems.Add(FListField.AsString);
|
||||
s:=FListField.AsString;
|
||||
FControlItems.Add(s);
|
||||
FListLink.DataSet.Next;
|
||||
end;
|
||||
finally
|
||||
|
Loading…
Reference in New Issue
Block a user