Mercurial > pidgin
changeset 7916:48dc9f358a91
[gaim-migrate @ 8583]
firebird support (Chris (darth_sebulba04))
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Tue, 23 Dec 2003 14:23:53 +0000 |
parents | 1f60811e3f57 |
children | 2f7973ab382c |
files | ChangeLog src/gtknotify.c src/gtkprefs.c |
diffstat | 3 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Dec 22 21:46:06 2003 +0000 +++ b/ChangeLog Tue Dec 23 14:23:53 2003 +0000 @@ -9,6 +9,7 @@ * Touch-up various dialogs to follow the Gnome Human Interface Guidelines more closely (Steven Garrity, Nathan Fredrickson, and Ka-Hing Cheung) + * Mozilla Firebird support (Chris (darth_sebulba04)) * Chinese (Simplified) translation updated (Funda Wang) * Chinese (Traditional) translation updated (Ambrose C. Li) * English (British) translation re-added (Luke Ross (lukeross))
--- a/src/gtknotify.c Mon Dec 22 21:46:06 2003 +0000 +++ b/src/gtknotify.c Tue Dec 23 14:23:53 2003 +0000 @@ -412,14 +412,16 @@ command = g_strdup_printf("opera \"%s\"", uri); } else if (!strcmp(web_browser, "kfmclient")) { command = g_strdup_printf("kfmclient openURL \"%s\"", uri); - } else if (!strcmp(web_browser, "galeon")) { + } else if (!strcmp(web_browser, "galeon")) { if (gaim_prefs_get_bool("/gaim/gtk/browsers/new_window")) command = g_strdup_printf("galeon -w \"%s\"", uri); else command = g_strdup_printf("galeon \"%s\"", uri); } else if (!strcmp(web_browser, "mozilla")) { command = g_strdup_printf("mozilla \"%s\"", uri); - } else if (!strcmp(web_browser, "custom")) { + } else if (!strcmp(web_browser, "mozilla-firebird")) { + command = g_strdup_printf("mozilla-firebird \"%s\"", uri); + } else if (!strcmp(web_browser, "custom")) { const char *web_command; web_command = gaim_prefs_get_string("/gaim/gtk/browsers/command");
--- a/src/gtkprefs.c Mon Dec 22 21:46:06 2003 +0000 +++ b/src/gtkprefs.c Tue Dec 23 14:23:53 2003 +0000 @@ -1217,9 +1217,10 @@ {N_("Netscape"), "netscape"}, {N_("Mozilla"), "mozilla"}, {N_("Konqueror"), "kfmclient"}, - {N_("Galeon"), "galeon"} + {N_("Galeon"), "galeon"}, + {N_("Firebird"), "mozilla-firebird"} }; - static const int num_possible_browsers = 5; + static const int num_possible_browsers = 6; GList *browsers = NULL; int i = 0;