diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-12-19 07:29:35 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-12-19 07:29:35 +0800 |
commit | 6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94 (patch) | |
tree | 66b3aff076fd343a1b5ffe8368a38195ae6b99f5 | |
parent | b265717d397e190684652329e6fd28e7ae482a0d (diff) | |
download | gsoc2013-evolution-6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94.tar gsoc2013-evolution-6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94.tar.gz gsoc2013-evolution-6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94.tar.bz2 gsoc2013-evolution-6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94.tar.lz gsoc2013-evolution-6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94.tar.xz gsoc2013-evolution-6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94.tar.zst gsoc2013-evolution-6ff38bae5d1c7efaa874ab44e6e5eb5ad1b42b94.zip |
slight fix
svn path=/trunk/; revision=15169
-rw-r--r-- | mail/mail-accounts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c index ea82a1b815..1e3f4c9d06 100644 --- a/mail/mail-accounts.c +++ b/mail/mail-accounts.c @@ -699,11 +699,11 @@ notify_radio_toggled (GtkWidget *radio, gpointer data) } static void -notify_command_changed (GtkWidget *file_entry, gpointer data) +notify_command_changed (GtkWidget *entry, gpointer data) { char *command; - command = gnome_file_entry_get_full_path (GNOME_FILE_ENTRY (file_entry), FALSE); + command = gtk_entry_get_text (GTK_ENTRY (entry)); mail_config_set_new_mail_notify_command (command); } @@ -807,7 +807,7 @@ static void construct (MailAccountsDialog *dialog) { GladeXML *gui; - GtkWidget *notebook, *menu, *entry; + GtkWidget *notebook, *menu; int num; gui = glade_xml_new (EVOLUTION_GLADEDIR "/mail-config.glade", NULL); |