Changeset 312


Ignore:
Timestamp:
Jul 31, 2008, 8:49:29 PM (17 years ago)
Author:
RBRi
Message:

small fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.19_branch/NewView/SearchUnit.pas

    r115 r312  
    168168  begin
    169169    DictWord := HelpFile.DictionaryWords[ DictIndex ];
    170     if StrStartsWithIgnoringCase( SearchWord, DictWord ) then
     170    if StrStartsWithIgnoringCase(DictWord, SearchWord) then
    171171      Results[ DictIndex ] := MatchedWordRelevance( SearchWord, DictWord );
    172172  end;
     
    187187  begin
    188188    DictWord := HelpFile.DictionaryWords[ DictIndex ];
    189     if StrEndsWithIgnoringCase( SearchWord, DictWord ) then
     189    if StrEndsWithIgnoringCase(DictWord, SearchWord ) then
    190190      Results[ DictIndex ] := MatchedWordRelevance( SearchWord, DictWord );
    191191  end;
Note: See TracChangeset for help on using the changeset viewer.