mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10282
This commit is contained in:
parent
53154b364e
commit
4e56e102bb
|
@ -67,7 +67,7 @@ struct APP_INIT_DATA;
|
|||
extern int boinc_init(void);
|
||||
extern int boinc_finish(int status);
|
||||
extern int boinc_resolve_filename(const char*, char*, int len);
|
||||
extern int boinc_get_init_data_p(APP_INIT_DATA*);
|
||||
extern int boinc_get_init_data_p(struct APP_INIT_DATA*);
|
||||
extern int boinc_parse_init_data_file(void);
|
||||
extern int boinc_write_init_data_file(void);
|
||||
extern int boinc_send_trickle_up(char* variety, char* text);
|
||||
|
|
|
@ -5641,7 +5641,13 @@ Charlie 9 June 2006
|
|||
- Mac: Reorganize SetUpSecurity for better efficiency. When run
|
||||
standalone (from XCode), SetUpSecurity adds logged in user to
|
||||
group boinc_project in adition to group boinc_master.
|
||||
- Fix opening URLs in default browser with wxMac-2.6.3.
|
||||
- Fix compile error in macglutfix.m due to boinc_api.h declaration of
|
||||
boinc_get_init_data_p().
|
||||
clientgui/
|
||||
mac/
|
||||
SetupSecurity.cpp
|
||||
|
||||
api/
|
||||
boinc_api.h
|
||||
clientgui/
|
||||
hyperlink.cpp
|
||||
|
|
|
@ -183,8 +183,10 @@ void wxHyperLink::ExecuteLink (const wxString &strLink) {
|
|||
if (ft) {
|
||||
if (ft->GetOpenCommand(&cmd, wxFileType::MessageParameters(strLink))) {
|
||||
#ifdef __WXMAC__
|
||||
#if wxABI_VERSION < 20603 // These are needed for wxMac-2.6.2 but don't work with wxMac-2.6.3
|
||||
cmd.Replace(wxT(" <"), "\'");
|
||||
cmd.Prepend(wxT("open \'"));
|
||||
cmd.Prepend(wxT("open \'"));
|
||||
#endif
|
||||
#else
|
||||
cmd.Replace(wxT("file://"), wxEmptyString);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue