summaryrefslogtreecommitdiff
path: root/docview/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2012-11-21 17:03:34 +0000
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2012-11-21 17:03:34 +0000
commit20c7ba568e3fea7888741e2d03f38e544ecfa52f (patch)
tree50662cebd28cc7ce4ccc6652e1643d807ce1c799 /docview/src
parent24dd3c98d170e14d743c1b8b79e4809fd8be0564 (diff)
downloadfpGUI-20c7ba568e3fea7888741e2d03f38e544ecfa52f.tar.xz
Removes verbose logevent() calls from docview.
Those many logevent() calls makes other debugging really difficult.
Diffstat (limited to 'docview/src')
-rw-r--r--docview/src/frm_main.pas5
1 files changed, 0 insertions, 5 deletions
diff --git a/docview/src/frm_main.pas b/docview/src/frm_main.pas
index d9c77634..21cca257 100644
--- a/docview/src/frm_main.pas
+++ b/docview/src/frm_main.pas
@@ -1876,7 +1876,6 @@ begin
tmpLowestEntryListIndex := -1;
// Find alphabetically lowest (remaining) topic
// first, look in contents lists
- LogEvent(LogDebug, ' Merge contents' );
for i := 0 to ContentsLists.Count - 1 do
begin
Contents := TList(ContentsLists.Items[i]);
@@ -1903,16 +1902,13 @@ begin
end;
// look in indices
- LogEvent(LogDebug, ' Merge indices' );
for i := 0 to tmpIndexLists.Count - 1 do
begin
- LogEvent(LogDebug, ' Merge indices ' + IntToStr(i) );
tmpIndex := TStringList(tmpIndexLists.Items[i]);
if IndexNextIndex[i] < tmpIndex.Count then
begin
// list is not yet finished, get next entry
ListEntry := tmpIndex.Strings[ IndexNextIndex[i] ];
- LogEvent(LogDebug, ' indices ListEntry=' + ListEntry );
if LowestEntry <> '' then
tmpTextCompareResult := CompareText( ListEntry, LowestEntry )
else
@@ -1925,7 +1921,6 @@ begin
tmpLowestEntryListIndex := i;
tmpLowestEntryListType := ltIndex;
- LogEvent(LogDebug, ' Merge indices ' + tmpIndex.Objects[ IndexNextIndex[i] ].ClassName);
tmpLowestEntryTopic := TIndexEntry( tmpIndex.Objects[ IndexNextIndex[i] ] ).getTopic;
end;
end;