Opkman: PackageListFrm: Display license and description as a single line in the tree.

git-svn-id: trunk@56679 -
This commit is contained in:
balazs 2017-12-09 11:32:04 +00:00
parent 5444356865
commit 283894c63d

View File

@ -164,13 +164,13 @@ begin
end;
1: case Data^.DataType of
0: CellText := '';
1: CellText := Data^.Description;
1: CellText := StringReplace(Data^.Description, sLineBreak, ' ', [rfReplaceAll]);
2: CellText := Data^.Author;
3: CellText := Data^.LazCompatibility;
4: CellText := Data^.FPCCompatibility;
5: CellText := Data^.SupportedWidgetSet;
6: CellText := GetPackageTypeString(Data^.PackageType);
7: CellText := Data^.License;
7: CellText := StringReplace(Data^.License, sLineBreak, ' ', [rfReplaceAll]);
8: CellText := Data^.Dependencies;
9: CellText := Data^.Version;
end;