Changeset 124
- Timestamp:
- Apr 27, 2007, 8:42:34 PM (18 years ago)
- Location:
- trunk/NewView
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NewView/GlobalFilelistUnit.pas
r61 r124 50 50 51 51 uses 52 StringUtilsUnit, 52 53 DebugUnit, 53 ACLStringUtility,54 54 SysUtils; 55 55 … … 124 124 while ( Result <> nil ) do 125 125 begin 126 if ( Str ingsSame( StrPas( Result ^. FilePath ), FilePath ) ) then126 if ( StrEqualIgnoringCase( StrPas( Result ^. FilePath ), FilePath ) ) then 127 127 begin 128 128 // found … … 164 164 if ( pEntry ^. Window = Window ) then 165 165 begin 166 if ( Str ingsSame( StrPas( pEntry ^. FilePath ), FilePath ) ) then166 if ( StrEqualIgnoringCase( StrPas( pEntry ^. FilePath ), FilePath ) ) then 167 167 begin 168 168 // found -
trunk/NewView/HelpFile.pas
r74 r124 156 156 uses 157 157 BseErr, 158 StringUtilsUnit, 158 159 DebugUnit, 159 160 ACLStringUtility, … … 671 672 for i := 0 to _Index.Count - 1 do 672 673 begin 673 if StrStarts ( SearchText, _Index.ValuePtrs[ i ] ^ ) then674 if StrStartsWithIgnoringCase( SearchText, _Index.ValuePtrs[ i ] ^ ) then 674 675 begin 675 676 // found … … 715 716 if tmpLevel = tmpTopic.ContentsLevel then 716 717 begin 717 if StrStarts ( SearchText, tmpTopic.TitlePtr ^ ) then718 if StrStartsWithIgnoringCase( SearchText, tmpTopic.TitlePtr ^ ) then 718 719 begin 719 720 result := tmpTopic;
Note:
See TracChangeset
for help on using the changeset viewer.