diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2009-10-13 16:25:47 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2009-10-13 16:25:47 +0200 |
commit | d53039f67b5629b2986864304fda77ce45a8d272 (patch) | |
tree | de9d8da8a8e0a4c11c17167d8246587a966a88f8 /src | |
parent | 6e285a70b2227c34712d96168dc0d4d17deeae6b (diff) | |
download | fpGUI-d53039f67b5629b2986864304fda77ce45a8d272.tar.xz |
INF tag processing out dated to RichView so margins did not work
* Updated the margin tag to what the newer RichView expects.
Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
Diffstat (limited to 'src')
-rw-r--r-- | src/HelpTopic.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HelpTopic.pas b/src/HelpTopic.pas index b70599da..11abf980 100644 --- a/src/HelpTopic.pas +++ b/src/HelpTopic.pas @@ -463,7 +463,7 @@ begin begin // set left margin Margin:= ( pData + 2 )^; - OutputString := '<margin ' + IntToStr( Margin ) + '>'; + OutputString := '<leftmargin ' + IntToStr( Margin ) + '>'; end; $04: |