summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2009-10-03 02:29:21 +0200
committerGraeme Geldenhuys <graemeg@gmail.com>2009-10-03 02:29:21 +0200
commit669904b4f7e75a536fc6bd18b9817c7cb94e4e6d (patch)
tree0ab661e9ff9a698f4c4cc36d806a9a907ceb6beb /src
parented2886a35bc2c70429ef923b18c76234c0839e1d (diff)
downloadfpGUI-669904b4f7e75a536fc6bd18b9817c7cb94e4e6d.tar.xz
Fix grammar mistake.
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/frm_main.pas7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/frm_main.pas b/src/frm_main.pas
index e02cfc87..c76ecd17 100644
--- a/src/frm_main.pas
+++ b/src/frm_main.pas
@@ -290,7 +290,7 @@ begin
ShowMessage( 'Could not open ' + lFileName + ': ' + E.Message )
else
ShowMessage( 'An error occurred loading ' + lFileName
- + '. It may be an damaged help file '
+ + '. It may be a damaged help file '
+ 'or there may be a bug in this program.' + #10 + #10 + E.Message );
Result := False;
// cleanup memory used
@@ -523,7 +523,6 @@ Begin
Memo1.Lines.Clear;
ImageIndices := TList.Create;
-
ProfileEvent('Cleared memo...');
HelpFile := TopicFile(Topic);
@@ -533,13 +532,13 @@ Begin
if HelpFile.HighlightWords <> nil then
ProfileEvent('highlightwords is ok');
lText := '';
- ProfileEvent('Debug = ' + BoolToStr(Debug));
+ ProfileEvent('Debug show hex values = ' + BoolToStr(Debug));
if ImageIndices <> nil then
ProfileEvent('ImageIndices initialized');
Topic.GetText(HelpFile.HighlightWords,
Debug,
lText,
- ImageIndices );
+ ImageIndices);
{ TODO -oGraeme : We do not support images yet }
ImageIndices.Free;