diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-15 23:16:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-16 10:50:05 +0800 |
commit | cae22334fa6bc395ccc421b09e0af94c89297c41 (patch) | |
tree | 84881f467c0448db044d8bb3533e044a7152bb2b /widgets/misc/e-attachment-handler-image.c | |
parent | d37784ed3db20fd74ea4b8d9fdfe58518370cea2 (diff) | |
download | gsoc2013-evolution-cae22334fa6bc395ccc421b09e0af94c89297c41.tar.gz gsoc2013-evolution-cae22334fa6bc395ccc421b09e0af94c89297c41.tar.zst gsoc2013-evolution-cae22334fa6bc395ccc421b09e0af94c89297c41.zip |
Remove dead assignments found by clang.
Diffstat (limited to 'widgets/misc/e-attachment-handler-image.c')
-rw-r--r-- | widgets/misc/e-attachment-handler-image.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/widgets/misc/e-attachment-handler-image.c b/widgets/misc/e-attachment-handler-image.c index 277a51be7f..6429eb6b8e 100644 --- a/widgets/misc/e-attachment-handler-image.c +++ b/widgets/misc/e-attachment-handler-image.c @@ -154,7 +154,6 @@ static void attachment_handler_image_update_actions_cb (EAttachmentView *view, EAttachmentHandler *handler) { - EAttachmentHandlerImagePrivate *priv; EAttachment *attachment; GFileInfo *file_info; GtkActionGroup *action_group; @@ -163,8 +162,6 @@ attachment_handler_image_update_actions_cb (EAttachmentView *view, GList *selected; gboolean visible = FALSE; - priv = E_ATTACHMENT_HANDLER_IMAGE_GET_PRIVATE (handler); - selected = e_attachment_view_get_selected_attachments (view); if (g_list_length (selected) != 1) @@ -199,7 +196,6 @@ exit: static void attachment_handler_image_constructed (GObject *object) { - EAttachmentHandlerImagePrivate *priv; EAttachmentHandler *handler; EAttachmentView *view; GtkActionGroup *action_group; @@ -207,7 +203,6 @@ attachment_handler_image_constructed (GObject *object) GError *error = NULL; handler = E_ATTACHMENT_HANDLER (object); - priv = E_ATTACHMENT_HANDLER_IMAGE_GET_PRIVATE (object); /* Chain up to parent's constructed() method. */ G_OBJECT_CLASS (parent_class)->constructed (object); |