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/rMisc.pas

    r456 r830  
    139139begin
    140140  Result := StrToIntDef(sCallV('ORWCH LDFONT', [nil]),8);
     141  If Result = 24 then Result := 18; // CQ #12322 removed 24 pt font
    141142end;
    142143
     
    354355  i: integer;
    355356begin
    356   for i := 0 to FNameList.Count-1 do
    357     theList.Add('B' + U + FNameList[i] + U + FSizeList[i]);
     357  for i := 0 to FNameList.Count-1 do begin
     358    if Piece(FNameList[i],U,1) = 'C' then
     359      theList.Add(FNameList[i] + U + FSizeList[i])
     360    else
     361      theList.Add('B' + U + FNameList[i] + U + FSizeList[i]);
     362  end;
    358363end;
    359364
     
    394399  else //Currently is in the NameList
    395400    rSizeVal := FSizeList[nameIndex];
     401  if (rSizeVal = '') and (Piece(AName,U,1) = 'C') then begin
     402    if not Assigned(uColumns) then LoadSizes;
     403    rSizeVal := uColumns.Values[Piece(AName,U,2)];
     404  end;
    396405  result := rSizeVal;
    397406end;
Note: See TracChangeset for help on using the changeset viewer.