summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2009-10-03 15:18:32 +0200
committerGraeme Geldenhuys <graemeg@gmail.com>2009-10-03 15:18:32 +0200
commit374fc544b319e3e03b3e16ab603c2245715891e4 (patch)
tree64c9decb9a3f9223ffd49b6d5098524e7a87f57e
parent52c5b6afb9c9ee72b6fdc91b720b727423a4d0e9 (diff)
downloadfpGUI-374fc544b319e3e03b3e16ab603c2245715891e4.tar.xz
Add Index count information in debug output.
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
-rw-r--r--src/frm_main.pas5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/frm_main.pas b/src/frm_main.pas
index dc6bf02a..a5b0b515 100644
--- a/src/frm_main.pas
+++ b/src/frm_main.pas
@@ -176,8 +176,9 @@ begin
Add('Filename: ' + f.Filename);
Add('----------');
Add('Title: ' + f.Title);
- Add('DictionaryCount:' + IntToStr(f.DictionaryCount));
- Add('TopicCount: ' + IntToStr(f.TopicCount));
+ Add('Dictionary count:' + IntToStr(f.DictionaryCount));
+ Add('Topic count: ' + IntToStr(f.TopicCount));
+ Add('Index count: ' + IntToStr(f.Index.Count));
Add(' ');
Add('Dictionary contents:');
for i := 0 to f.DictionaryCount-1 do