aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-tree.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-12-22 15:38:16 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-12-22 15:38:16 +0800
commitda10c48009573371ec19e12da0ffe95344bd02a0 (patch)
tree2948e3c2279f0e678a10ca7f5f4503676f4aacba /mail/em-folder-tree.c
parent6fec7fed87a7f21eacc80ea687671c4084f7b1af (diff)
downloadgsoc2013-evolution-da10c48009573371ec19e12da0ffe95344bd02a0.tar
gsoc2013-evolution-da10c48009573371ec19e12da0ffe95344bd02a0.tar.gz
gsoc2013-evolution-da10c48009573371ec19e12da0ffe95344bd02a0.tar.bz2
gsoc2013-evolution-da10c48009573371ec19e12da0ffe95344bd02a0.tar.lz
gsoc2013-evolution-da10c48009573371ec19e12da0ffe95344bd02a0.tar.xz
gsoc2013-evolution-da10c48009573371ec19e12da0ffe95344bd02a0.tar.zst
gsoc2013-evolution-da10c48009573371ec19e12da0ffe95344bd02a0.zip
moved to after emae_authtype_changed to fix warning.
2004-12-22 Not Zed <NotZed@Ximian.com> * em-account-editor.c (emae_needs_auth): moved to after emae_authtype_changed to fix warning. 2004-12-17 Not Zed <NotZed@Ximian.com> * em-format-html-display.c (efhd_attachment_popup): * message-list.c (ml_tree_drag_data_received): * em-folder-view.c (emfv_popup, emfv_format_popup_event): * em-folder-tree.c (tree_drag_data_received): api changes. (emft_popup): * em-popup.c (emp_standard_menu_factory) (emp_standard_menu_factory): api changes. svn path=/trunk/; revision=28180
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r--mail/em-folder-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c
index 60045e7d19..8ef1f59c74 100644
--- a/mail/em-folder-tree.c
+++ b/mail/em-folder-tree.c
@@ -1104,7 +1104,7 @@ tree_drag_data_received(GtkWidget *widget, GdkDragContext *context, int x, int y
if ((item->visible & mask) == 0)
menus = g_slist_append(menus, item);
}
- e_popup_add_items((EPopup *)emp, menus, emft_drop_popup_free, m);
+ e_popup_add_items((EPopup *)emp, menus, NULL, emft_drop_popup_free, m);
menu = e_popup_create_menu_once((EPopup *)emp, NULL, mask);
gtk_menu_popup(menu, NULL, NULL, NULL, NULL, 0, gtk_get_current_event_time());
} else {
@@ -2823,7 +2823,7 @@ emft_popup (EMFolderTree *emft, GdkEvent *event)
for (i = 0; i < sizeof (emft_popup_items) / sizeof (emft_popup_items[0]); i++)
menus = g_slist_prepend (menus, &emft_popup_items[i]);
- e_popup_add_items ((EPopup *)emp, menus, emft_popup_free, emft);
+ e_popup_add_items ((EPopup *)emp, menus, NULL, emft_popup_free, emft);
menu = e_popup_create_menu_once ((EPopup *)emp, (EPopupTarget *)target, 0);