diff options
author | Not Zed <NotZed@Ximian.com> | 2005-03-02 13:23:46 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-03-02 13:23:46 +0800 |
commit | 9c26fef2d420b58f8e3699af4c09705f3e9eb65b (patch) | |
tree | bc4c445914a44b7ea43b315edafdafbf53b218ef /mail/em-utils.c | |
parent | 9f9805577b127c40c317e72bbfdd1cd8235b5de2 (diff) | |
download | gsoc2013-evolution-9c26fef2d420b58f8e3699af4c09705f3e9eb65b.tar.gz gsoc2013-evolution-9c26fef2d420b58f8e3699af4c09705f3e9eb65b.tar.zst gsoc2013-evolution-9c26fef2d420b58f8e3699af4c09705f3e9eb65b.zip |
include atkutil.h (message_list_construct): cast warning.
2005-03-01 Not Zed <NotZed@Ximian.com>
* message-list.c: include atkutil.h
(message_list_construct): cast warning.
* mail-session.c (mail_session_set_interactive): remove unused
variable since we can no longer terminate password requests.
* mail-autofilter.c (em_vfolder_rule_from_address): properly
define in header.
* em-utils.c (emu_get_save_filesel): only define filename in the
!gtkfilechooser case.
* em-mailer-prefs.c (restore_labels_clicked): cast for warning.
(em_mailer_prefs_construct): same.
* em-format-html.c (efh_format_header): remove unused variable.
* em-account-editor.c (emae_widget_druid_glade): remove unused
variable.
* importers/mail-importer.h: forward-delcare struct
_MailComponent.
* *c: remove/disable various debug.
svn path=/trunk/; revision=28934
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 679875bcfe..22b0ea1dda 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -304,7 +304,7 @@ emu_get_save_filesel (GtkWidget *parent, const char *title, const char *name) { GtkWidget *filesel; const char *dir; - char *realname, *filename, *gdir; + char *realname, *gdir; GConfClient *gconf; #ifdef USE_GTKFILECHOOSER @@ -316,6 +316,8 @@ emu_get_save_filesel (GtkWidget *parent, const char *title, const char *name) NULL); gtk_dialog_set_default_response (GTK_DIALOG (filesel), GTK_RESPONSE_OK); #else + char *filename; + filesel = gtk_file_selection_new (title); #endif |