Changeset 312
- Timestamp:
- Jul 31, 2008, 8:49:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.19_branch/NewView/SearchUnit.pas
r115 r312 168 168 begin 169 169 DictWord := HelpFile.DictionaryWords[ DictIndex ]; 170 if StrStartsWithIgnoringCase( SearchWord, DictWord) then170 if StrStartsWithIgnoringCase(DictWord, SearchWord) then 171 171 Results[ DictIndex ] := MatchedWordRelevance( SearchWord, DictWord ); 172 172 end; … … 187 187 begin 188 188 DictWord := HelpFile.DictionaryWords[ DictIndex ]; 189 if StrEndsWithIgnoringCase( SearchWord, DictWord ) then189 if StrEndsWithIgnoringCase(DictWord, SearchWord ) then 190 190 Results[ DictIndex ] := MatchedWordRelevance( SearchWord, DictWord ); 191 191 end;
Note:
See TracChangeset
for help on using the changeset viewer.