Ignore:
Timestamp:
Aug 2, 2016, 12:27:13 PM (8 years ago)
Author:
chronos
Message:
  • Fixed: Wrong column indexes in list of import sources.
  • Fixed: Do not sort items in TListSort component if soNone order is set.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormImportSources.pas

    r73 r74  
    274274           if Pos(UTF8LowerCase(StringGrid.Cells[2, 0]),
    275275             UTF8LowerCase(TImportSource(List.Items[I]).Categories.GetString)) > 0 then Inc(FoundCount);
    276            if Pos(UTF8LowerCase(StringGrid.Cells[2, 0]),
     276           if Pos(UTF8LowerCase(StringGrid.Cells[3, 0]),
    277277             UTF8LowerCase(IntToStr(TImportSource(List.Items[I]).ItemCount))) > 0 then Inc(FoundCount);
    278            if Pos(UTF8LowerCase(StringGrid.Cells[2, 0]),
     278           if Pos(UTF8LowerCase(StringGrid.Cells[4, 0]),
    279279             UTF8LowerCase(DateTimeToStr(TImportSource(List.Items[I]).LastImportTime))) > 0 then Inc(FoundCount);
    280280           if FoundCount <> EnteredCount then List.Delete(I);
Note: See TracChangeset for help on using the changeset viewer.