Auto-formatted Pascal files: about1.pas, frmMain.pas

This commit is contained in:
Nikolaos Georgiou 2021-11-01 07:07:58 +01:00
parent 0f64d31bfa
commit 42e274e30f
2 changed files with 3 additions and 2 deletions

View File

@ -48,4 +48,4 @@ begin
end;
end.

View File

@ -132,7 +132,8 @@ begin
SendMessage(wnd, CB_GETLBTEXT, i - 1, longint(@itemtext));
node2 := AddChild(node1, 'Item #' + IntToStr(i));
AddChild(node2, 'Text = ' + itemtext);
AddChild(node2, 'Data = ' + IntToStr(SendMessage(wnd, CB_GETITEMDATA, i - 1, 0)));
AddChild(node2, 'Data = ' +
IntToStr(SendMessage(wnd, CB_GETITEMDATA, i - 1, 0)));
end;
end;
if childlist.Count > 0 then