From: divverent Date: Mon, 2 Feb 2009 08:20:18 +0000 (+0000) Subject: use Firefox, not Netscape X-Git-Tag: svn-r421~242 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=176491f8efbf75478dd1e88ccc146e7d01f4fa5e;p=xonotic%2Fnetradiant.git use Firefox, not Netscape git-svn-id: svn://svn.icculus.org/netradiant/trunk@178 61c419a2-8eb2-4b30-bcec-8cead039b335 --- diff --git a/radiant/url.cpp b/radiant/url.cpp index 382dcd90..96f13a2e 100644 --- a/radiant/url.cpp +++ b/radiant/url.cpp @@ -40,7 +40,7 @@ bool open_url(const char* url) // \todo FIXME: the way we open URLs on *nix should be improved. A script is good (see how I do on RTCW) char command[2*PATH_MAX]; snprintf (command, sizeof(command), - "netscape -remote \"openURL(%s,new-window)\" || netscape \"%s\" &", url, url); + "firefox -remote \"openURL(%s,new-window)\" || firefox \"%s\" &", url, url); return system(command) == 0; } #endif