diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-19 08:29:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-19 08:29:43 +0800 |
commit | 8c6a11f9d834b6a56361c6499fd9cb3e11ae2a73 (patch) | |
tree | 03f2e21ba0da6a371c909b73fb126f3b954cc263 /mail/message-list.c | |
parent | 4165d1ef0538971d39decb9926b617c9a351b6fc (diff) | |
download | gsoc2013-evolution-8c6a11f9d834b6a56361c6499fd9cb3e11ae2a73.tar.gz gsoc2013-evolution-8c6a11f9d834b6a56361c6499fd9cb3e11ae2a73.tar.zst gsoc2013-evolution-8c6a11f9d834b6a56361c6499fd9cb3e11ae2a73.zip |
BugĀ 607360 - [regression] Runtime warnings at exit
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 9046b69894..a512bcec57 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -2467,12 +2467,12 @@ message_list_dispose (GObject *object) } if (priv->copy_target_list != NULL) { - g_object_unref (priv->copy_target_list); + gtk_target_list_unref (priv->copy_target_list); priv->copy_target_list = NULL; } if (priv->paste_target_list != NULL) { - g_object_unref (priv->paste_target_list); + gtk_target_list_unref (priv->paste_target_list); priv->paste_target_list = NULL; } |