diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-06-30 06:34:21 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-06-30 06:34:21 +0800 |
commit | a2a6d4d922fc99136203d7467abd8aa2ccdd86ac (patch) | |
tree | ee64a5e269402d7bcc14078a7195425b537d5365 | |
parent | f39e17a1c7784012e18dace88febff18d23256c8 (diff) | |
download | gsoc2013-evolution-a2a6d4d922fc99136203d7467abd8aa2ccdd86ac.tar gsoc2013-evolution-a2a6d4d922fc99136203d7467abd8aa2ccdd86ac.tar.gz gsoc2013-evolution-a2a6d4d922fc99136203d7467abd8aa2ccdd86ac.tar.bz2 gsoc2013-evolution-a2a6d4d922fc99136203d7467abd8aa2ccdd86ac.tar.lz gsoc2013-evolution-a2a6d4d922fc99136203d7467abd8aa2ccdd86ac.tar.xz gsoc2013-evolution-a2a6d4d922fc99136203d7467abd8aa2ccdd86ac.tar.zst gsoc2013-evolution-a2a6d4d922fc99136203d7467abd8aa2ccdd86ac.zip |
Changed "Exit" to "Close" in the File menu. This is a little more
2000-06-29 Jeffrey Stedfast <fejj@helixcode.com>
* e-msg-composer.c: Changed "Exit" to "Close" in the File menu.
This is a little more intuitive as it does not suggest exiting
the application, just says "close this window"
svn path=/trunk/; revision=3814
-rw-r--r-- | composer/ChangeLog | 6 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index b7bca1205f..82166e587b 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,9 @@ +2000-06-29 Jeffrey Stedfast <fejj@helixcode.com> + + * e-msg-composer.c: Changed "Exit" to "Close" in the File menu. + This is a little more intuitive as it does not suggest exiting + the application, just says "close this window" + 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-msg-composer-select-file.h for make diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 2e63dab8e7..e4d389a3de 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -114,7 +114,8 @@ get_text (Bonobo_PersistStream persist, char *format) CORBA_exception_init (&ev); stream = bonobo_stream_mem_create (NULL, 0, FALSE, TRUE); - Bonobo_PersistStream_save (persist, (Bonobo_Stream)bonobo_object_corba_objref (BONOBO_OBJECT (stream)), format, &ev); + Bonobo_PersistStream_save (persist, (Bonobo_Stream)bonobo_object_corba_objref (BONOBO_OBJECT (stream)), + format, &ev); if (ev._major != CORBA_NO_EXCEPTION) { /* FIXME. Some error message. */ return NULL; @@ -713,7 +714,7 @@ static GnomeUIInfo file_tree[] = { GNOMEUIINFO_ITEM_STOCK (N_("Send"), N_("Send the message"), send_cb, GNOME_STOCK_MENU_MAIL_SND), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_MENU_EXIT_ITEM (exit_cb, NULL), + GNOMEUIINFO_MENU_CLOSE_ITEM (exit_cb, NULL), GNOMEUIINFO_END }; @@ -772,7 +773,6 @@ create_toolbar (EMsgComposer *composer) bonobo_ui_handler_toolbar_add_list (uih, "/Toolbar", list); } - /* GtkObject methods. */ static void @@ -822,7 +822,6 @@ destroy (GtkObject *object) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } - static void class_init (EMsgComposerClass *klass) { @@ -873,7 +872,6 @@ init (EMsgComposer *composer) composer->persist_stream_interface = CORBA_OBJECT_NIL; } - GtkType e_msg_composer_get_type (void) { @@ -897,7 +895,6 @@ e_msg_composer_get_type (void) return type; } - /** * e_msg_composer_construct: * @composer: A message composer widget @@ -1121,8 +1118,6 @@ e_msg_composer_new_from_url (const char *url) return GTK_WIDGET (composer); } - - /** * e_msg_composer_show_attachments: * @composer: A message composer widget @@ -1141,7 +1136,6 @@ e_msg_composer_show_attachments (EMsgComposer *composer, show_attachments (composer, show); } - /** * e_msg_composer_set_headers: * @composer: a composer object |