Changeset 305
- Timestamp:
- Jul 9, 2008, 8:58:39 PM (17 years ago)
- Location:
- branches/2.19_branch/NewView
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.19_branch/NewView/ProductInformationFormUnit.pas
r294 r305 52 52 Procedure TProductInformationForm.EmailEditOnClick (Sender: TObject); 53 53 Begin 54 LaunchURL( 'mailto://' + EmailEdit.Text);54 LaunchURL('"mailto:' + EmailEdit.Text + '"'); 55 55 End; 56 56 57 57 Procedure TProductInformationForm.WebPageEditOnClick (Sender: TObject); 58 58 Begin 59 LaunchURL( 'http://' + WebPageEdit.Text);59 LaunchURL('"http://' + WebPageEdit.Text + '"'); 60 60 End; 61 61 62 62 63 Procedure TProductInformationForm.ProductInformationFormOnSetupShow (Sender: TObject); … … 64 65 ScaleForm( self, 11, 16 ); 65 66 End; 67 66 68 67 69 Procedure TProductInformationForm.OnLanguageEvent( Language: TLanguageFile; -
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.