diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2009-10-16 11:28:02 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2009-10-16 11:28:02 +0200 |
commit | a8d0e1fa2aa408f02c82bae41f59c8b685d9cbb8 (patch) | |
tree | 5077814a66d873066d0a2d335ea75553cd140201 /src | |
parent | 999071ec84c9af9bb891a978a653373a57270b3f (diff) | |
download | fpGUI-a8d0e1fa2aa408f02c82bae41f59c8b685d9cbb8.tar.xz |
No need for pString support.
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 fe832c10..63f8cd0d 100644 --- a/src/HelpTopic.pas +++ b/src/HelpTopic.pas @@ -2544,7 +2544,7 @@ begin // normal lookup if GlobalDictIndex < _GlobalDictionary.Count then - StringToAdd := pstring( _GlobalDictionary[ GlobalDictIndex ] )^ + StringToAdd := _GlobalDictionary[ GlobalDictIndex ] else StringToAdd := ''; |