summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2008-02-23 09:05:39 +0000
committerSven Wegener <swegener@gentoo.org>2008-02-23 09:05:39 +0000
commit6590b7a92b1ca3433ca4776097230a8d23aa1ffc (patch)
tree75b4f181ad6152bc66f6e6a70ce8b1dfc8b14bbb /net-im/gaim/files
parentQA: remove redundant call to cd ${S} in src_compile. (diff)
downloadhistorical-6590b7a92b1ca3433ca4776097230a8d23aa1ffc.tar.gz
historical-6590b7a92b1ca3433ca4776097230a8d23aa1ffc.tar.bz2
historical-6590b7a92b1ca3433ca4776097230a8d23aa1ffc.zip
stray files
Diffstat (limited to 'net-im/gaim/files')
-rw-r--r--net-im/gaim/files/gaim-0.76-xinput.patch15
-rw-r--r--net-im/gaim/files/gaim-1.5.0-privacy.patch38
2 files changed, 0 insertions, 53 deletions
diff --git a/net-im/gaim/files/gaim-0.76-xinput.patch b/net-im/gaim/files/gaim-0.76-xinput.patch
deleted file mode 100644
index a9fddf54010f..000000000000
--- a/net-im/gaim/files/gaim-0.76-xinput.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -urN gaim-0.75.99-20040318cvs.orig/src/gtkconv.c gaim-0.75.99-20040318cvs/src/gtkconv.c
---- gaim-0.75.99-20040318cvs.orig/src/gtkconv.c 2004-03-16 10:31:48.000000000 -1000
-+++ gaim-0.75.99-20040318cvs/src/gtkconv.c 2004-03-16 12:50:59.689509499 -1000
-@@ -1390,6 +1390,11 @@
- if (!(event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) &&
- gaim_prefs_get_bool("/gaim/gtk/conversations/enter_sends"))
- {
-+ if (gtk_im_context_filter_keypress (GTK_TEXT_VIEW (entry)->im_context, event))
-+ {
-+ GTK_TEXT_VIEW (entry)->need_im_reset = TRUE;
-+ return TRUE;
-+ }
- send_cb(NULL, conv);
- return TRUE;
- }
diff --git a/net-im/gaim/files/gaim-1.5.0-privacy.patch b/net-im/gaim/files/gaim-1.5.0-privacy.patch
deleted file mode 100644
index ac010ee15124..000000000000
--- a/net-im/gaim/files/gaim-1.5.0-privacy.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-===================================================================
-RCS file: /cvsroot/gaim/gaim/src/privacy.c,v
-retrieving revision 1.16
-retrieving revision 1.18
-diff -u -r1.16 -r1.18
---- gaim/gaim/src/privacy.c 2005/07/17 23:36:33 1.16
-+++ gaim/gaim/src/privacy.c 2006/02/07 02:49:56 1.18
-@@ -85,8 +85,8 @@
- if (l == NULL)
- return FALSE;
-
-- account->permit = g_slist_remove(account->permit, l->data);
- g_free(l->data);
-+ account->permit = g_slist_delete_link(account->permit, l);
-
- if (!local_only && gaim_account_is_connected(account))
- serv_rem_permit(gaim_account_get_connection(account), who);
-@@ -156,15 +156,16 @@
- if (l == NULL)
- return FALSE;
-
-- account->deny = g_slist_remove(account->deny, l->data);
-- g_free(l->data);
-+ name = l->data;
-+ account->deny = g_slist_delete_link(account->deny, l);
-
- if (!local_only && gaim_account_is_connected(account))
-- serv_rem_deny(gaim_account_get_connection(account), who);
-+ serv_rem_deny(gaim_account_get_connection(account), name);
-
- if (privacy_ops != NULL && privacy_ops->deny_removed != NULL)
-- privacy_ops->deny_removed(account, who);
-+ privacy_ops->deny_removed(account, name);
-
-+ g_free(name);
- gaim_blist_schedule_save();
-
- return TRUE;