mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=8604
This commit is contained in:
parent
ca9932f9b5
commit
1b6f91ac17
|
@ -12938,3 +12938,12 @@ Rom 8 Oct 2005
|
||||||
|
|
||||||
clientgui/
|
clientgui/
|
||||||
ViewProjects.cpp
|
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
|
||||||
|
|
|
@ -205,9 +205,19 @@ void wxHyperLink::ExecuteLink (const wxString &strLink) {
|
||||||
#endif
|
#endif
|
||||||
::wxExecute(cmd);
|
::wxExecute(cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
delete ft;
|
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$";
|
const char *BOINC_RCSID_d587835b7e="$Id$";
|
||||||
|
|
Loading…
Reference in New Issue