From: <the...@us...> - 2006-09-24 08:11:32
|
Revision: 17342 http://svn.sourceforge.net/gaim/?rev=17342&view=rev Author: thekingant Date: 2006-09-24 01:11:28 -0700 (Sun, 24 Sep 2006) Log Message: ----------- sf patch #1563203, from hjheins Add Seamonkey to the list of browsers. This is the first patch I've accepted in a while. Mostly because Richard has been doing such an awesome job with the patch tracker. Three cheers for rlaager! hip-hip, hooray! hip-hip, hooray! hip-hip, hooray! Modified Paths: -------------- trunk/gtk/gtknotify.c trunk/gtk/gtkprefs.c Modified: trunk/gtk/gtknotify.c =================================================================== --- trunk/gtk/gtknotify.c 2006-09-24 07:14:26 UTC (rev 17341) +++ trunk/gtk/gtknotify.c 2006-09-24 08:11:28 UTC (rev 17342) @@ -966,7 +966,8 @@ } else if (!strcmp(web_browser, "mozilla") || !strcmp(web_browser, "mozilla-firebird") || - !strcmp(web_browser, "firefox")) + !strcmp(web_browser, "firefox") || + !strcmp(web_browser, "seamonkey")) { char *args = ""; Modified: trunk/gtk/gtkprefs.c =================================================================== --- trunk/gtk/gtkprefs.c 2006-09-24 07:14:26 UTC (rev 17341) +++ trunk/gtk/gtkprefs.c 2006-09-24 08:11:28 UTC (rev 17342) @@ -1171,16 +1171,18 @@ char *command; }; + /* Sorted reverse alphabetically */ static struct browser possible_browsers[] = { - {N_("Epiphany"), "epiphany"}, + {N_("Seamonkey"), "seamonkey"}, + {N_("Opera"), "opera"}, + {N_("Netscape"), "netscape"}, + {N_("Mozilla"), "mozilla"}, + {N_("Konqueror"), "kfmclient"}, + {N_("GNOME Default"), "gnome-open"}, + {N_("Galeon"), "galeon"}, + {N_("Firefox"), "firefox"}, {N_("Firebird"), "mozilla-firebird"}, - {N_("Firefox"), "firefox"}, - {N_("Galeon"), "galeon"}, - {N_("GNOME Default"), "gnome-open"}, - {N_("Konqueror"), "kfmclient"}, - {N_("Mozilla"), "mozilla"}, - {N_("Netscape"), "netscape"}, - {N_("Opera"), "opera"} + {N_("Epiphany"), "epiphany"} }; static const int num_possible_browsers = 9; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |