diff options
author | Miguel de Icaza <miguel@helixcode.com> | 2001-01-10 15:34:41 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2001-01-10 15:34:41 +0800 |
commit | d2f38078eeabbe72821a3c636361b27163ce35c0 (patch) | |
tree | fca7b929fd59306e47ba7a5667410fcb7f1b39a9 | |
parent | 6e49bbc42faee636e056af0e0b370671f1a88dc7 (diff) | |
download | gsoc2013-evolution-d2f38078eeabbe72821a3c636361b27163ce35c0.tar gsoc2013-evolution-d2f38078eeabbe72821a3c636361b27163ce35c0.tar.gz gsoc2013-evolution-d2f38078eeabbe72821a3c636361b27163ce35c0.tar.bz2 gsoc2013-evolution-d2f38078eeabbe72821a3c636361b27163ce35c0.tar.lz gsoc2013-evolution-d2f38078eeabbe72821a3c636361b27163ce35c0.tar.xz gsoc2013-evolution-d2f38078eeabbe72821a3c636361b27163ce35c0.tar.zst gsoc2013-evolution-d2f38078eeabbe72821a3c636361b27163ce35c0.zip |
Fix proto. (print_preview_msg): Fix proto.
2001-01-10 Miguel de Icaza <miguel@helixcode.com>
* mail-callbacks.c (print_msg): Fix proto.
(print_preview_msg): Fix proto.
* subscribe-dialog.c: Remove more UNSAFE macros.
svn path=/trunk/; revision=7360
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/subscribe-dialog.c | 12 |
2 files changed, 13 insertions, 6 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 4a2f3cebd7..57b5863e0d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2001-01-10 Miguel de Icaza <miguel@helixcode.com> + + * mail-callbacks.c (print_msg): Fix proto. + (print_preview_msg): Fix proto. + + * subscribe-dialog.c: Remove more UNSAFE macros. + 2001-01-09 Jason Leach <jasonleach@usa.net> * mail-display.c (pixmap_press): Bugfix for #1077: scrollwheel diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c index 1c2573cf09..f9c8530153 100644 --- a/mail/subscribe-dialog.c +++ b/mail/subscribe-dialog.c @@ -817,18 +817,18 @@ folder_toggle_cb (ETable *table, int row, int col, GdkEvent *event, gpointer dat static BonoboUIVerb verbs [] = { /* File Menu */ - BONOBO_UI_UNSAFE_VERB ("FileCloseWin", subscribe_close), + BONOBO_UI_VERB ("FileCloseWin", subscribe_close), /* Edit Menu */ - BONOBO_UI_UNSAFE_VERB ("EditSelectAll", subscribe_select_all), - BONOBO_UI_UNSAFE_VERB ("EditInvertSelection", subscribe_invert_selection), + BONOBO_UI_VERB ("EditSelectAll", subscribe_select_all), + BONOBO_UI_VERB ("EditInvertSelection", subscribe_invert_selection), /* Folder Menu / Toolbar */ - BONOBO_UI_UNSAFE_VERB ("SubscribeFolder", subscribe_folders), - BONOBO_UI_UNSAFE_VERB ("UnsubscribeFolder", unsubscribe_folders), + BONOBO_UI_VERB ("SubscribeFolder", subscribe_folders), + BONOBO_UI_VERB ("UnsubscribeFolder", unsubscribe_folders), /* Toolbar Specific */ - BONOBO_UI_UNSAFE_VERB ("RefreshList", subscribe_refresh_list), + BONOBO_UI_VERB ("RefreshList", subscribe_refresh_list), BONOBO_UI_VERB_END }; |