diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-11-21 17:03:34 +0000 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-11-21 17:03:34 +0000 |
commit | 20c7ba568e3fea7888741e2d03f38e544ecfa52f (patch) | |
tree | 50662cebd28cc7ce4ccc6652e1643d807ce1c799 | |
parent | 24dd3c98d170e14d743c1b8b79e4809fd8be0564 (diff) | |
download | fpGUI-20c7ba568e3fea7888741e2d03f38e544ecfa52f.tar.xz |
Removes verbose logevent() calls from docview.
Those many logevent() calls makes other debugging really difficult.
-rw-r--r-- | docview/src/frm_main.pas | 5 |
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; |