From 7e249e103b9024b5d95bcdfdf636810aac7b2559 Mon Sep 17 00:00:00 2001 From: Joe Marcus Clarke Date: Mon, 5 Apr 2004 04:18:39 +0000 Subject: Update to 0.76. For a list of what's new and exciting, see: http://gaim.sourceforge.net/ChangeLog Also, provide a better fix for quoted printable text. [1] PR: 65110 [1] Submitted by: green [1] --- net/gaim/files/patch-src::gtkconv.c | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 net/gaim/files/patch-src::gtkconv.c (limited to 'net/gaim/files/patch-src::gtkconv.c') diff --git a/net/gaim/files/patch-src::gtkconv.c b/net/gaim/files/patch-src::gtkconv.c deleted file mode 100644 index ab1c804d46e1..000000000000 --- a/net/gaim/files/patch-src::gtkconv.c +++ /dev/null @@ -1,30 +0,0 @@ ---- src/gtkconv.c.orig Thu Aug 14 07:40:41 2003 -+++ src/gtkconv.c Mon Aug 25 16:34:55 2003 -@@ -1138,11 +1138,27 @@ - GaimConversation *conv; - GaimGtkConversation *gtkconv; - GaimGtkWindow *gtkwin; -+ gboolean im_context_retval = FALSE; -+ static guint32 last_event_time; - - conv = (GaimConversation *)data; - gtkconv = GAIM_GTK_CONVERSATION(conv); - win = gaim_conversation_get_window(conv); - gtkwin = GAIM_GTK_WINDOW(win); -+ -+ /* -+ * Check if the input method handles this keyevent or we can use it. -+ * We need to check the event time, otherwise the gtk xim module gets into an event loop (bug?) -+ * Maybe this is not the best solution, but it works. -+ */ -+ -+ if (last_event_time != event->time) { -+ im_context_retval = gtk_im_context_filter_keypress(GTK_TEXT_VIEW(gtkconv->entry)->im_context, event); -+ } -+ last_event_time = event->time; -+ if (im_context_retval == TRUE) { -+ return TRUE; -+ } - - if (event->keyval == GDK_Page_Up) { - g_signal_stop_emission_by_name(G_OBJECT(entry), "key_press_event"); -- cgit v1.2.3