diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-03-08 10:25:48 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-03-08 10:25:48 +0200 |
commit | 77f249a08d5e0aa104bda024f25ba6cf3acfc22b (patch) | |
tree | b80f7cd7d31ffb6f747a0c335229cf76bb87b42e /extras | |
parent | 73591fba3e8399ba9acb3921cbbbc0e47cfc61c6 (diff) | |
download | fpGUI-77f249a08d5e0aa104bda024f25ba6cf3acfc22b.tar.xz |
PDF report engine. Fixed a minor compilation error
Diffstat (limited to 'extras')
-rw-r--r-- | extras/contributed/report_tool/reportengine/u_visu.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/contributed/report_tool/reportengine/u_visu.pas b/extras/contributed/report_tool/reportengine/u_visu.pas index 19aae6ab..6205c2c4 100644 --- a/extras/contributed/report_tool/reportengine/u_visu.pas +++ b/extras/contributed/report_tool/reportengine/u_visu.pas @@ -155,7 +155,7 @@ try with Document do begin FluxFichier:= TFileStream.Create(FichierPdf,fmCreate); - EcritDocument(FluxFichier); + WriteDocument(FluxFichier); FluxFichier.Free; Free; end; |