aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@helixcode.com>2001-01-10 15:34:04 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2001-01-10 15:34:04 +0800
commit6e49bbc42faee636e056af0e0b370671f1a88dc7 (patch)
tree2816ef620f524313a72c5c95ef10e04607e54c0a
parent259eaac0c728141c9deb201d2cc1f576a171f97f (diff)
downloadgsoc2013-evolution-6e49bbc42faee636e056af0e0b370671f1a88dc7.tar
gsoc2013-evolution-6e49bbc42faee636e056af0e0b370671f1a88dc7.tar.gz
gsoc2013-evolution-6e49bbc42faee636e056af0e0b370671f1a88dc7.tar.bz2
gsoc2013-evolution-6e49bbc42faee636e056af0e0b370671f1a88dc7.tar.lz
gsoc2013-evolution-6e49bbc42faee636e056af0e0b370671f1a88dc7.tar.xz
gsoc2013-evolution-6e49bbc42faee636e056af0e0b370671f1a88dc7.tar.zst
gsoc2013-evolution-6e49bbc42faee636e056af0e0b370671f1a88dc7.zip
Removed more UNSAFE stuff. Maybe we should kill this macro, and have
2001-01-10 Miguel de Icaza <miguel@helixcode.com> * e-msg-composer.c: Removed more UNSAFE stuff. Maybe we should kill this macro, and have people that want these broken things define their own macros. svn path=/trunk/; revision=7359
-rw-r--r--composer/ChangeLog6
-rw-r--r--composer/e-msg-composer.c20
2 files changed, 16 insertions, 10 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index df51d27355..3f6c68abf8 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,9 @@
+2001-01-10 Miguel de Icaza <miguel@helixcode.com>
+
+ * e-msg-composer.c: Removed more UNSAFE stuff. Maybe we should
+ kill this macro, and have people that want these broken things
+ define their own macros.
+
2001-01-08 Jeffrey Stedfast <fejj@helixcode.com>
* e-msg-composer-hdrs.c (create_dropdown_entry): Updated for new
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index e53b3a8c64..b3b5ab8d04 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -1068,16 +1068,16 @@ menu_format_html_cb (BonoboUIComponent *component,
static BonoboUIVerb verbs [] = {
- BONOBO_UI_UNSAFE_VERB ("FileOpen", menu_file_open_cb),
- BONOBO_UI_UNSAFE_VERB ("FileSave", menu_file_save_cb),
- BONOBO_UI_UNSAFE_VERB ("FileSaveAs", menu_file_save_as_cb),
- BONOBO_UI_UNSAFE_VERB ("FileClose", menu_file_close_cb),
-
- BONOBO_UI_UNSAFE_VERB ("FileInsertFile", menu_file_insert_file_cb),
- BONOBO_UI_UNSAFE_VERB ("FileAttach", menu_file_add_attachment_cb),
-
- BONOBO_UI_UNSAFE_VERB ("FileSend", menu_file_send_cb),
- BONOBO_UI_UNSAFE_VERB ("FileSendLater", menu_file_send_later_cb),
+ BONOBO_UI_VERB ("FileOpen", menu_file_open_cb),
+ BONOBO_UI_VERB ("FileSave", menu_file_save_cb),
+ BONOBO_UI_VERB ("FileSaveAs", menu_file_save_as_cb),
+ BONOBO_UI_VERB ("FileClose", menu_file_close_cb),
+
+ BONOBO_UI_VERB ("FileInsertFile", menu_file_insert_file_cb),
+ BONOBO_UI_VERB ("FileAttach", menu_file_add_attachment_cb),
+
+ BONOBO_UI_VERB ("FileSend", menu_file_send_cb),
+ BONOBO_UI_VERB ("FileSendLater", menu_file_send_later_cb),
BONOBO_UI_VERB_END
};