소스 검색

Fixes fcl-report compilation after r37157

git-svn-id: trunk@37160 -
marcus 8 년 전
부모
커밋
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