Просмотр исходного кода

Fixes fcl-report compilation after r37157

git-svn-id: trunk@37160 -
marcus 8 лет назад
Родитель
Сommit
8bb6dc12b1
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/fcl-report/src/fpreporthtmlutil.pp

+ 2 - 2
packages/fcl-report/src/fpreporthtmlutil.pp

@@ -227,7 +227,7 @@ function GetColorComponent(Var AColor: UInt32): Word; inline;
 
 begin
   Result:=(AColor and $FF);
-  Result:=Result or (Result shl 8)
+  Result:=Result or (Result shl 8);
   AColor:=(AColor shr 8);
 end;
 
@@ -250,7 +250,7 @@ end;
 
 Function RGBTripleToColor(AColor : TFPColor) : UINT32;
 
-  Function BS(C : Word; Sh : Byte) : UINT;
+  Function BS(C : Word; Sh : Byte) : UINT32;
   begin
     Result:=C shr 8;
     If (Sh<>0) then