diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-09-02 07:53:33 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-09-02 07:53:33 +0800 |
commit | a029bb7982e6f00a84d5cf43f96188dac0be3c49 (patch) | |
tree | 57da4900fce6e3e19c2e9c0f571abde331b06c15 /composer/e-msg-composer.h | |
parent | 7edc1cf9c079a27a366ab77b79802a63b3c7a9c6 (diff) | |
download | gsoc2013-evolution-a029bb7982e6f00a84d5cf43f96188dac0be3c49.tar.gz gsoc2013-evolution-a029bb7982e6f00a84d5cf43f96188dac0be3c49.tar.zst gsoc2013-evolution-a029bb7982e6f00a84d5cf43f96188dac0be3c49.zip |
This needs to return a const char * and not a char *, because we're not
2000-09-01 Jeffrey Stedfast <fejj@helixcode.com>
* e-msg-composer.c (e_msg_composer_get_sig_file): This needs to
return a const char * and not a char *, because we're not actually
allocating memory here.
(create_menubar_file): Changed "Send" to "Send Now" and added
"Send Later"
(menu_file_send_later_cb): New callback that emits the POSTPONE
signal (equivalent to "Send Later"
svn path=/trunk/; revision=5177
Diffstat (limited to 'composer/e-msg-composer.h')
-rw-r--r-- | composer/e-msg-composer.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/composer/e-msg-composer.h b/composer/e-msg-composer.h index aee35e04a5..8f8bf97c14 100644 --- a/composer/e-msg-composer.h +++ b/composer/e-msg-composer.h @@ -48,31 +48,31 @@ typedef struct _EMsgComposerClass EMsgComposerClass; struct _EMsgComposer { GnomeApp parent; - + BonoboUIHandler *uih; - + GtkWidget *hdrs; GPtrArray *extra_hdr_names, *extra_hdr_values; - + GtkWidget *editor; - + GtkWidget *attachment_bar; GtkWidget *attachment_scroll_frame; - + GtkWidget *address_dialog; - + Bonobo_PersistFile persist_file_interface; Bonobo_PersistStream persist_stream_interface; - + char *sig_file; - + gboolean attachment_bar_visible : 1; gboolean send_html : 1; }; struct _EMsgComposerClass { GnomeAppClass parent_class; - + void (* send) (EMsgComposer *composer); void (* postpone) (EMsgComposer *composer); }; |