diff options
author | Sven Wegener <swegener@gentoo.org> | 2008-02-23 09:05:39 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2008-02-23 09:05:39 +0000 |
commit | dce61ad5ae42fd56a41a97d36c69ef05596521ea (patch) | |
tree | 6ba9b55187e597ba9225fbbfb40f2f63242e6deb /net-im/gaim | |
parent | QA: remove redundant call to cd ${S} in src_compile. (diff) | |
download | gentoo-2-dce61ad5ae42fd56a41a97d36c69ef05596521ea.tar.gz gentoo-2-dce61ad5ae42fd56a41a97d36c69ef05596521ea.tar.bz2 gentoo-2-dce61ad5ae42fd56a41a97d36c69ef05596521ea.zip |
stray files
Diffstat (limited to 'net-im/gaim')
-rw-r--r-- | net-im/gaim/files/gaim-0.76-xinput.patch | 15 | ||||
-rw-r--r-- | net-im/gaim/files/gaim-1.5.0-privacy.patch | 38 |
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; |