diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-05-23 12:14:25 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-07-31 09:54:03 +0100 |
commit | 7124b1005235ce2b3565376dafa2022df04f1b58 (patch) | |
tree | eb229e9764113dfe85e059504366104dcf8ca61b | |
parent | c1d8a0f6f0f04266bf09914df405bc7b56f11428 (diff) | |
download | fpGUI-7124b1005235ce2b3565376dafa2022df04f1b58.tar.xz |
pdf demo: fixed a minor spelling mistake in the text output.
-rw-r--r-- | extras/contributed/report_tool/demo/u_demo.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/contributed/report_tool/demo/u_demo.pas b/extras/contributed/report_tool/demo/u_demo.pas index 4e13fcf1..520a3abd 100644 --- a/extras/contributed/report_tool/demo/u_demo.pas +++ b/extras/contributed/report_tool/demo/u_demo.pas @@ -1096,7 +1096,7 @@ with FReport do // write a long text in the default column WritePage(cnLeft,150,'This long text is supposed to be written on two lines in ColDefaut (and does include parenthesis). If it does not, there is obviously a remaining bug in the way wrapping is performed.',ColDefaut,FtText2); // write a long text without columns - WritePage(50,200,'This long text is supposed to be written on two lines whithout column (and does include parenthesis). If it does not, there is abviously a remaining bug in the way wrapping is performed.',-1,FtText2); + WritePage(50,200,'This long text is supposed to be written on two lines without column (and does include parenthesis). If it does not, there is obviously a remaining bug in the way wrapping is performed.',-1,FtText2); // preparation is finished, so create PDF objects EndWrite; end; |