]> git.pld-linux.org Git - packages/evolution.git/blame - evolution-GG-IM.patch
- added security patch (Integer overflow)
[packages/evolution.git] / evolution-GG-IM.patch
CommitLineData
1ec59cd2 1diff -urN evolution.orig/addressbook/gui/contact-editor/e-contact-editor.c evolution/addressbook/gui/contact-editor/e-contact-editor.c
2--- evolution.orig/addressbook/gui/contact-editor/e-contact-editor.c 2004-06-02 12:02:59.915611392 +0200
3+++ evolution/addressbook/gui/contact-editor/e-contact-editor.c 2004-06-02 12:11:13.388592096 +0200
4@@ -178,6 +178,7 @@
5 { E_CONTACT_IM_AIM, N_ ("AIM") },
6 { E_CONTACT_IM_JABBER, N_ ("Jabber") },
7 { E_CONTACT_IM_YAHOO, N_ ("Yahoo") },
8+ { E_CONTACT_IM_GADUGADU, N_ ("Gadu-Gadu") },
9 { E_CONTACT_IM_MSN, N_ ("MSN") },
10 { E_CONTACT_IM_ICQ, N_ ("ICQ") },
11 { E_CONTACT_IM_GROUPWISE, N_ ("GroupWise") }
12diff -urN evolution.orig/addressbook/gui/contact-editor/e-contact-editor-im.c evolution/addressbook/gui/contact-editor/e-contact-editor-im.c
13--- evolution.orig/addressbook/gui/contact-editor/e-contact-editor-im.c 2004-06-02 12:02:59.890615192 +0200
14+++ evolution/addressbook/gui/contact-editor/e-contact-editor-im.c 2004-06-02 12:10:24.371043896 +0200
15@@ -63,6 +63,7 @@
16 N_("Novell Groupwise"),
17 N_("Jabber"),
18 N_("Yahoo Messenger"),
19+ N_("Gadu-Gadu Messenger"),
20 N_("MSN Messenger"),
21 N_("ICQ")
22 };
23@@ -72,6 +73,7 @@
24 "im-nov",
25 "im-jabber",
26 "im-yahoo",
27+ "im-gadugadu",
28 "im-msn",
29 "im-icq"
30 };
31diff -urN evolution.orig/addressbook/gui/widgets/eab-contact-display.c evolution/addressbook/gui/widgets/eab-contact-display.c
32--- evolution.orig/addressbook/gui/widgets/eab-contact-display.c 2004-06-02 12:03:00.574511224 +0200
33+++ evolution/addressbook/gui/widgets/eab-contact-display.c 2004-06-02 12:09:01.088704736 +0200
34@@ -55,6 +55,7 @@
35 #define JABBER_ICON "im-jabber"
36 #define MSN_ICON "im-msn"
37 #define YAHOO_ICON "im-yahoo"
38+#define GADUGADU_ICON "im-gadugadu"
39 #define VIDEOCONF_ICON "stock_video-conferencing"
40
41 #define MAX_COMPACT_IMAGE_DIMENSION 48
1ec59cd2 42@@ -356,6 +358,7 @@
43 accum_attribute (accum, contact, _("Jabber"), E_CONTACT_IM_JABBER_HOME_1, JABBER_ICON, 0);
44 accum_attribute (accum, contact, _("MSN"), E_CONTACT_IM_MSN_HOME_1, MSN_ICON, 0);
45 accum_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO_HOME_1, YAHOO_ICON, 0);
46+ accum_attribute (accum, contact, _("Gadu-Gadu"), E_CONTACT_IM_GADUGADU_HOME_1, GADUGADU_ICON, 0);
1ec59cd2 47
c0e646e4 48 if (accum->len > 0)
49 gtk_html_stream_printf (html_stream, accum->str);
This page took 0.546077 seconds and 4 git commands to generate.