summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-04-06 17:06:15 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-04-06 17:06:15 +0200
commite41645ceebe725ce3f47ab7fce462097b2d37e08 (patch)
tree824ac0e6748b46968c468d029e81b8c809da256a
parent588d101a110ff6804a3b7e23b46c27a7baf3934f (diff)
downloadfpGUI-e41645ceebe725ce3f47ab7fce462097b2d37e08.tar.xz
minor code improvement for readability.
-rw-r--r--docview/src/SearchUnit.pas12
1 files changed, 5 insertions, 7 deletions
diff --git a/docview/src/SearchUnit.pas b/docview/src/SearchUnit.pas
index f7a8eb8e..ec333406 100644
--- a/docview/src/SearchUnit.pas
+++ b/docview/src/SearchUnit.pas
@@ -85,7 +85,7 @@ begin
WordSequences.Clear;
end;
-// given a search word which is known to matche Reference word,
+// given a Search word which is known to match the Reference word,
// return the relevance
function MatchedWordRelevance( const SearchWord: string;
const ReferenceWord: string ): longint;
@@ -361,8 +361,8 @@ begin
AllocUInt32Array( TopicsExcluded, // Exclusions are treated as boolean only
TopicCount );
- FillUInt32Array( TopicRelevances, TopicCount, 0);
- FillUInt32Array( TopicsExcluded, TopicCount, 0);
+ ClearUInt32Array( TopicRelevances, TopicCount );
+ ClearUInt32Array( TopicsExcluded, TopicCount );
for TermIndex := 0 to Query.TermCount - 1 do
begin
@@ -425,8 +425,7 @@ begin
// this search term part, search topic texts
LogEvent(LogSearch, ' Dictionary search done' );
- ClearUInt32Array( TopicsMatchingTermPart,
- TopicCount );
+ ClearUInt32Array( TopicsMatchingTermPart, TopicCount );
for DictIndex := 0 to HelpFile.DictionaryCount - 1 do
begin
@@ -435,8 +434,7 @@ begin
begin
// Search for occurrences of this word
// within the text of topics
- HelpFile.SearchTable.Search( DictIndex,
- TopicsMatchingDictWord );
+ HelpFile.SearchTable.Search(DictIndex, TopicsMatchingDictWord);
// debug
s := HelpFile.DictionaryWords[ DictIndex ];