diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-25 03:01:47 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-25 03:01:47 +0800 |
commit | d397b9d2ce3d4fa076c9f6af98157c7ea92f9752 (patch) | |
tree | 9db9f6b112812929439e6ae8ae27880afa17f65d | |
parent | 08523fea6f9a0e9a02685cf3d6750973595ff482 (diff) | |
download | gsoc2013-evolution-d397b9d2ce3d4fa076c9f6af98157c7ea92f9752.tar gsoc2013-evolution-d397b9d2ce3d4fa076c9f6af98157c7ea92f9752.tar.gz gsoc2013-evolution-d397b9d2ce3d4fa076c9f6af98157c7ea92f9752.tar.bz2 gsoc2013-evolution-d397b9d2ce3d4fa076c9f6af98157c7ea92f9752.tar.lz gsoc2013-evolution-d397b9d2ce3d4fa076c9f6af98157c7ea92f9752.tar.xz gsoc2013-evolution-d397b9d2ce3d4fa076c9f6af98157c7ea92f9752.tar.zst gsoc2013-evolution-d397b9d2ce3d4fa076c9f6af98157c7ea92f9752.zip |
Fixed some warnings in the uihandler code.
2000-08-24 Christopher James Lahey <clahey@helixcode.com>
* folder-browser-factory.c: Fixed some warnings in the uihandler
code.
svn path=/trunk/; revision=5008
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/folder-browser-factory.c | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index b1f43688ba..9513bc684e 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-08-24 Christopher James Lahey <clahey@helixcode.com> + + * folder-browser-factory.c: Fixed some warnings in the uihandler + code. + 2000-08-24 Peter Williams <peterw@helixcode.com> * component-factory.c (mail_load_storages): New function. diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c index 6c4bd13bbd..9dacf3c83f 100644 --- a/mail/folder-browser-factory.c +++ b/mail/folder-browser-factory.c @@ -185,41 +185,41 @@ control_activate (BonoboControl *control, BonoboUIHandler *uih, uih, "/<Component Placeholder>/Message/Print Message", _("_Print Message"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, - print_msg, folder_browser); + (void *) print_msg, folder_browser); bonobo_ui_handler_menu_new_separator ( uih, "/<Component Placeholder>/Message/separator1", -1); bonobo_ui_handler_menu_new_item ( uih, "/<Component Placeholder>/Message/Reply to Sender", _("Reply to _Sender"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, - reply_to_sender, folder_browser); + (void *) reply_to_sender, folder_browser); bonobo_ui_handler_menu_new_item ( uih, "/<Component Placeholder>/Message/Reply to All", _("Reply to _All"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, - reply_to_all, folder_browser); + (void *) reply_to_all, folder_browser); bonobo_ui_handler_menu_new_item ( uih, "/<Component Placeholder>/Message/Forward", _("_Forward"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, - forward_msg, folder_browser); + (void *) forward_msg, folder_browser); bonobo_ui_handler_menu_new_separator ( uih, "/<Component Placeholder>/Message/separator2", -1); bonobo_ui_handler_menu_new_item ( uih, "/<Component Placeholder>/Message/Delete Message", _("_Delete Message"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, - delete_msg, folder_browser); + (void *) delete_msg, folder_browser); bonobo_ui_handler_menu_new_item ( uih, "/<Component Placeholder>/Message/Move Message", _("_Move Message"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, - move_msg, folder_browser); + (void *) move_msg, folder_browser); bonobo_ui_handler_menu_new_item ( uih, "/<Component Placeholder>/Message/Copy Message", _("_Copy Message"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, - copy_msg, folder_browser); + (void *) copy_msg, folder_browser); /* Folder Menu */ bonobo_ui_handler_menu_new_subtree ( |