* Fix return type of PageCount when not using marker

git-svn-id: trunk@37272 -
This commit is contained in:
michael 2017-09-20 15:10:50 +00:00
parent 642e08a573
commit 9aa7d07896

View File

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