Changeset 329 for branches/2.19_branch/NewView/HelpFile.pas
- Timestamp:
- Aug 17, 2008, 8:23:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.19_branch/NewView/HelpFile.pas
r325 r329 681 681 var 682 682 i: longint; 683 tmpIndex: String; 683 684 begin 684 685 result := nil; … … 686 687 for i := 0 to _Index.Count - 1 do 687 688 begin 688 if StrStartsWithIgnoringCase( SearchText, _Index.ValuePtrs[ i ] ^ ) then 689 tmpIndex := _Index.ValuePtrs[i]^; 690 if StrStartsWithIgnoringCase(tmpIndex, SearchText) then 689 691 begin 690 692 // found … … 730 732 if tmpLevel = tmpTopic.ContentsLevel then 731 733 begin 732 if StrStartsWithIgnoringCase( SearchText, tmpTopic.TitlePtr ^) then734 if StrStartsWithIgnoringCase(tmpTopic.TitlePtr^, SearchText) then 733 735 begin 734 736 result := tmpTopic;
Note:
See TracChangeset
for help on using the changeset viewer.