From f6ba97d9647a768ef225fdc095c16e8aa635f8f9 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 9 Nov 2009 12:31:31 -0500 Subject: BugĀ 601219 - Transient dialogs in composer window blocks main window MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- widgets/misc/e-attachment-store.c | 17 +++++++++++++++++ widgets/misc/e-attachment-store.h | 9 +++++++++ 2 files changed, 26 insertions(+) (limited to 'widgets') diff --git a/widgets/misc/e-attachment-store.c b/widgets/misc/e-attachment-store.c index 4c87d65dd9..b5f659cd33 100644 --- a/widgets/misc/e-attachment-store.c +++ b/widgets/misc/e-attachment-store.c @@ -649,6 +649,23 @@ e_attachment_store_run_save_dialog (EAttachmentStore *store, return destination; } +/***************** e_attachment_store_add_mime_parts_async() *****************/ + +void +e_attachment_store_add_mime_parts_async (EAttachmentStore *store, + GList *mime_parts, + GAsyncReadyCallback callback, + gpointer user_data) +{ +} + +gboolean +e_attachment_store_add_mime_parts_finish (EAttachmentStore *store, + GAsyncResult *result, + GError **error) +{ +} + /******************** e_attachment_store_get_uris_async() ********************/ typedef struct _UriContext UriContext; diff --git a/widgets/misc/e-attachment-store.h b/widgets/misc/e-attachment-store.h index 1c3cb52731..efe3e16610 100644 --- a/widgets/misc/e-attachment-store.h +++ b/widgets/misc/e-attachment-store.h @@ -109,6 +109,15 @@ GFile * e_attachment_store_run_save_dialog GtkWindow *parent); /* Asynchronous Operations */ +void e_attachment_store_add_mime_parts_async + (EAttachmentStore *store, + GList *mime_parts, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean e_attachment_store_add_mime_parts_finish + (EAttachmentStore *store, + GAsyncResult *result, + GError **error); void e_attachment_store_get_uris_async (EAttachmentStore *store, GList *attachment_list, -- cgit