diff options
author | Dan Vrátil <dvratil@redhat.com> | 2012-03-29 01:58:55 +0800 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2012-03-29 02:00:52 +0800 |
commit | efcf20eb7273e4fec96fea895c57124641e67360 (patch) | |
tree | ae795275e5aa7bdcdf221e2a4d7e22512d96d3eb /mail | |
parent | c17965f62a4a4df2870fe4c46bc101803bafd414 (diff) | |
download | gsoc2013-evolution-efcf20eb7273e4fec96fea895c57124641e67360.tar gsoc2013-evolution-efcf20eb7273e4fec96fea895c57124641e67360.tar.gz gsoc2013-evolution-efcf20eb7273e4fec96fea895c57124641e67360.tar.bz2 gsoc2013-evolution-efcf20eb7273e4fec96fea895c57124641e67360.tar.lz gsoc2013-evolution-efcf20eb7273e4fec96fea895c57124641e67360.tar.xz gsoc2013-evolution-efcf20eb7273e4fec96fea895c57124641e67360.tar.zst gsoc2013-evolution-efcf20eb7273e4fec96fea895c57124641e67360.zip |
Fix compile-time warning
Diffstat (limited to 'mail')
-rw-r--r-- | 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 7572c664cb..495e327a3e 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; |