Ignore:
Timestamp:
Jul 7, 2010, 4:51:54 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Upgrading to version 27

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/CPRS-Chart/fProbLex.pas

    r456 r830  
    66  SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
    77  Forms, Dialogs, ORFn, uProbs, StdCtrls, Buttons, ExtCtrls, ORctrls, uConst,
    8   fAutoSz, uInit;
     8  fAutoSz, uInit, fBase508Form, VA508AccessibilityManager;
    99
    1010type
    11   TfrmPLLex = class(TForm)
     11  TfrmPLLex = class(TfrmBase508Form)
    1212    Label1: TLabel;
    1313    bbCan: TBitBtn;
     
    183183  begin
    184184   ProblemList.clear;
    185    {Alist.Assign(ProblemLexiconSearch(v)) ;}
    186    Alist.Assign(OldProblemLexiconSearch(v, 100)) ;
     185   {FastAssign(ProblemLexiconSearch(v), Alist) ;}
     186   FastAssign(OldProblemLexiconSearch(v, 100), Alist) ;
    187187  end;
    188188 if Alist.count > 0 then
    189189    begin
    190      lbLex.Items.assign(Alist);
    191      ProblemList.assign(Alist);
     190     FastAssign(Alist, lbLex.Items);
     191     FastAssign(Alist, ProblemList);
    192192     Max:=ProblemList[pred(ProblemList.count)]; {get max number found}
    193193     ProblemList.delete(pred(ProblemList.count)); {shed max# found}
Note: See TracChangeset for help on using the changeset viewer.