diff options
-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; } |