소스 검색

* Fix return type of PageCount when not using marker

git-svn-id: trunk@37272 -
michael 8 년 전
부모
커밋
9aa7d07896
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/fcl-report/src/fpreport.pp

+ 1 - 1
packages/fcl-report/src/fpreport.pp

@@ -6582,7 +6582,7 @@ begin
   if UsePageCountMarker then
     Result.ResString := cPageCountMarker
   else
-    Result.ResString := IntToStr(FPageCount);
+    Result.ResInteger := FPageCount;
 end;