Changeset 172
- Timestamp:
- Jun 15, 2019, 8:13:43 PM (5 years ago)
- Location:
- trunk/LocalPlayer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Help.pas
r171 r172 1406 1406 Caption := HelpText.Lookup('HELPTITLE_TECHLIST'); 1407 1407 List := THyperText.Create; 1408 List.OwnsObjects := True; 1408 1409 for j := 0 to 3 do 1409 1410 begin … … 1522 1523 // AddLine(HelpText.Lookup('HELPTITLE_IMPLIST'),pkSection); 1523 1524 List := THyperText.Create; 1525 List.OwnsObjects := True; 1524 1526 for i := 28 to nImp - 1 do 1525 1527 if (i <> imTrGoods) and (Imp[i].Preq <> preNA) and … … 1788 1790 Caption := HelpText.Lookup('HELPTITLE_FEATURELIST'); 1789 1791 List := THyperText.Create; 1792 List.OwnsObjects := True; 1790 1793 for Special := 0 to 2 do 1791 1794 begin -
trunk/LocalPlayer/PVSB.pas
r171 r172 153 153 begin 154 154 FMax := AValue; 155 ScrollBar.Max := Math.Max(0, Max{$IFDEF LINUX} - PageSize + 1{$ENDIF});155 ScrollBar.Max := Math.Max(0, FMax); 156 156 end; 157 157
Note:
See TracChangeset
for help on using the changeset viewer.