# HG changeset patch # User Mark Doliner # Date 1159085488 0 # Node ID 45cdf2cf456c9c2ed1acc410ece367f67f33c64f # Parent 62bb53609a366aa6b8a5cd7e8d3d9fa31fcbb678 [gaim-migrate @ 17342] 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! committer: Tailor Script diff -r 62bb53609a36 -r 45cdf2cf456c gtk/gtknotify.c --- a/gtk/gtknotify.c Sun Sep 24 07:14:26 2006 +0000 +++ b/gtk/gtknotify.c Sun Sep 24 08:11:28 2006 +0000 @@ -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 = ""; diff -r 62bb53609a36 -r 45cdf2cf456c gtk/gtkprefs.c --- a/gtk/gtkprefs.c Sun Sep 24 07:14:26 2006 +0000 +++ b/gtk/gtkprefs.c Sun Sep 24 08:11:28 2006 +0000 @@ -1171,16 +1171,18 @@ char *command; }; + /* Sorted reverse alphabetically */ static struct browser possible_browsers[] = { - {N_("Epiphany"), "epiphany"}, - {N_("Firebird"), "mozilla-firebird"}, - {N_("Firefox"), "firefox"}, + {N_("Seamonkey"), "seamonkey"}, + {N_("Opera"), "opera"}, + {N_("Netscape"), "netscape"}, + {N_("Mozilla"), "mozilla"}, + {N_("Konqueror"), "kfmclient"}, + {N_("GNOME Default"), "gnome-open"}, {N_("Galeon"), "galeon"}, - {N_("GNOME Default"), "gnome-open"}, - {N_("Konqueror"), "kfmclient"}, - {N_("Mozilla"), "mozilla"}, - {N_("Netscape"), "netscape"}, - {N_("Opera"), "opera"} + {N_("Firefox"), "firefox"}, + {N_("Firebird"), "mozilla-firebird"}, + {N_("Epiphany"), "epiphany"} }; static const int num_possible_browsers = 9;