From 19c2544d274f516fecdaba27a979b3e0acd8b8cd Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Fri, 21 Jul 2006 22:09:45 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=10722 --- clientgui/hyperlink.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clientgui/hyperlink.cpp b/clientgui/hyperlink.cpp index 3b1b564537..7f0fab95aa 100644 --- a/clientgui/hyperlink.cpp +++ b/clientgui/hyperlink.cpp @@ -213,11 +213,11 @@ void wxHyperLink::ExecuteLink (const wxString &strLink) { cmd = ::wxGetenv(wxT("BROWSER")); if(cmd.IsEmpty()) { - if ( wxFile.Exists(wxT("/usr/bin/firefox"))) { + if ( wxFile::Exists(wxT("/usr/bin/firefox"))) { cmd = wxT("/usr/bin/firefox"); - } else (wxFile.Exists(wxT("/usr/bin/konqueror"))) { + } else (wxFile::Exists(wxT("/usr/bin/konqueror"))) { cmd = wxT("/usr/bin/konqueror"); - } else (wxFile.Exists(wxT("/usr/bin/mozilla"))) { + } else (wxFile::Exists(wxT("/usr/bin/mozilla"))) { cmd = wxT("/usr/bin/mozilla"); } }