*** empty log message ***

svn path=/trunk/boinc/; revision=8639
This commit is contained in:
Rom Walton 2005-10-10 23:27:14 +00:00
parent 3d322e891c
commit 15ade6da9d
1 changed files with 12 additions and 10 deletions

View File

@ -203,18 +203,20 @@ void wxHyperLink::ExecuteLink (const wxString &strLink) {
#else
cmd.Replace(wxT("file://"), wxEmptyString);
#endif
if (cmd.IsEmpty()) {
::wxMessageBox(
_("BOINC could not determine what your default browser is.\n"
"Please verify that you have either the 'mailcap' package installed or\n"
"'mime' package installed, and that the 'text/html' mime type is\n"
"configured for your favorite browser."),
_("BOINC Manager"),
wxOK | wxICON_INFORMATION
);
}
::wxExecute(cmd);
}
#if defined(__WXGTK__) || defined(__WXMOTIF__)
else {
::wxMessageBox(
_("BOINC could not determine what your default browser is.\n"
"Please verify that you have either the 'mailcap' package installed or\n"
"'mime' package installed, and that the 'text/html' mime type is\n"
"configured for your favorite browser."),
_("BOINC Manager"),
wxOK | wxICON_INFORMATION
);
}
#endif
delete ft;
}
#if defined(__WXGTK__) || defined(__WXMOTIF__)