diff options
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/message-list.c | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0f9f31fbbf..b705728b06 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2004-04-28 Not Zed <NotZed@Ximian.com> + * message-list.c (ml_selection_clear_event): return the right + type, related to #53839. + ** Changed error messages to use EError. 2004-04-27 Not Zed <NotZed@Ximian.com> diff --git a/mail/message-list.c b/mail/message-list.c index 45935118dd..5e2a4e28ef 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1446,12 +1446,14 @@ ml_selection_get(GtkWidget *widget, GtkSelectionData *data, guint info, guint ti } } -static void +static gboolean ml_selection_clear_event(GtkWidget *widget, GdkEventSelection *event, MessageList *ml) { struct _MessageListPrivate *p = ml->priv; clear_selection(ml, &p->clipboard); + + return TRUE; } static void |