Changeset 305 for branches/2.19_branch/NewView/WebBrowserUnit.pas
- Timestamp:
- Jul 9, 2008, 8:58:39 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.19_branch/NewView/WebBrowserUnit.pas
r301 r305 160 160 end; 161 161 162 if StrStartsWithIgnoringCase(aURL, '"ftp') then 162 if StrStartsWithIgnoringCase(aURL, '"ftp') 163 or StrStartsWithIgnoringCase(aURL, 'ftp') 164 then 163 165 begin 164 166 tmpAlternativeExe := GetDefaultFtpExe; … … 170 172 end 171 173 end 172 else if StrStartsWithIgnoringCase(aURL, '"mailto') then 174 else if StrStartsWithIgnoringCase(aURL, '"mailto') 175 or StrStartsWithIgnoringCase(aURL, 'mailto') 176 then 173 177 begin 174 178 tmpAlternativeExe := GetDefaultMailExe; … … 180 184 end 181 185 end 182 else if StrStartsWithIgnoringCase(aURL, '"news') then 186 else if StrStartsWithIgnoringCase(aURL, '"news') 187 or StrStartsWithIgnoringCase(aURL, '"news') 188 then 183 189 begin 184 190 tmpAlternativeExe := GetDefaultNewsExe;
Note:
See TracChangeset
for help on using the changeset viewer.