[evolution] Fix compile-time warning



commit efcf20eb7273e4fec96fea895c57124641e67360
Author: Dan VrÃtil <dvratil redhat com>
Date:   Wed Mar 28 19:58:55 2012 +0200

    Fix compile-time warning

 mail/e-mail-attachment-bar.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/mail/e-mail-attachment-bar.c b/mail/e-mail-attachment-bar.c
index 7572c66..495e327 100644
--- a/mail/e-mail-attachment-bar.c
+++ b/mail/e-mail-attachment-bar.c
@@ -392,6 +392,12 @@ mail_attachment_bar_get_path_at_pos (EAttachmentView *view,
 	return e_attachment_view_get_path_at_pos (view, x, y);
 }
 
+static EAttachmentStore *
+mail_attachment_bar_get_store (EAttachmentView *view)
+{
+	return e_mail_attachment_bar_get_store (E_MAIL_ATTACHMENT_BAR (view));
+}
+
 static GList *
 mail_attachment_bar_get_selected_paths (EAttachmentView *view)
 {
@@ -531,7 +537,7 @@ static void
 e_mail_attachment_bar_interface_init (EAttachmentViewInterface *interface)
 {
 	interface->get_private = mail_attachment_bar_get_private;
-	interface->get_store = e_mail_attachment_bar_get_store;
+	interface->get_store = mail_attachment_bar_get_store;
 	interface->get_path_at_pos = mail_attachment_bar_get_path_at_pos;
 	interface->get_selected_paths = mail_attachment_bar_get_selected_paths;
 	interface->path_is_selected = mail_attachment_bar_path_is_selected;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]