*** empty log message ***

svn path=/trunk/boinc/; revision=8604
This commit is contained in:
Rom Walton 2005-10-09 22:31:14 +00:00
parent ca9932f9b5
commit 1b6f91ac17
2 changed files with 20 additions and 1 deletions

View File

@ -12938,3 +12938,12 @@ Rom 8 Oct 2005
clientgui/
ViewProjects.cpp
Rom 8 Oct 2005
- Display an informational dialog on Linux when the text/html mime type
doesn't point to a browser. Inform the user that they may need to
install the 'mailcap' package or the 'mime' package so the manager
knows which browser to launch.
clientgui/
hyperlink.cpp

View File

@ -205,9 +205,19 @@ void wxHyperLink::ExecuteLink (const wxString &strLink) {
#endif
::wxExecute(cmd);
}
delete ft;
}
#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"),
_("BOINC Manager"),
wxOK | wxICON_INFORMATION
);
}
#endif
}
const char *BOINC_RCSID_d587835b7e="$Id$";