From ab8da3ce3810df8dc6a9df049031292ee03b4393 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Sun, 30 Apr 2006 21:27:04 +0000 Subject: Allow multiple selection of attachments 2006-04-29 Carlos Garcia Campos * backend/ev-attachment.c: * shell/ev-attachment-bar.c: * shell/ev-window.c: Allow multiple selection of attachments --- (limited to 'backend') diff --git a/backend/ev-attachment.c b/backend/ev-attachment.c index f0002f3..3314738 100644 --- a/backend/ev-attachment.c +++ b/backend/ev-attachment.c @@ -367,10 +367,14 @@ ev_attachment_open (EvAttachment *attachment, gboolean retval = FALSE; GnomeVFSMimeApplication *default_app = NULL; - if (!attachment->priv->app) + g_return_val_if_fail (EV_IS_ATTACHMENT (attachment), FALSE); + + if (!attachment->priv->app) { default_app = gnome_vfs_mime_get_default_application (attachment->priv->mime_type); + attachment->priv->app = default_app; + } - if (!default_app) { + if (!attachment->priv->app) { g_set_error (error, EV_ATTACHMENT_ERROR, 0, @@ -380,8 +384,6 @@ ev_attachment_open (EvAttachment *attachment, return FALSE; } - attachment->priv->app = default_app; - if (attachment->priv->tmp_uri && g_file_test (attachment->priv->tmp_uri, G_FILE_TEST_EXISTS)) { retval = ev_attachment_launch_app (attachment, error); -- cgit v0.9.1