diff options
Diffstat (limited to 'mail/mail-threads.c')
-rw-r--r-- | mail/mail-threads.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/mail-threads.c b/mail/mail-threads.c index 10502557a6..cc66b60ce2 100644 --- a/mail/mail-threads.c +++ b/mail/mail-threads.c @@ -28,6 +28,8 @@ #include <errno.h> #include <glib.h> +#include <gal/widgets/e-gui-utils.h> + #include "folder-browser-factory.h" #include "camel/camel-object.h" @@ -889,7 +891,8 @@ get_password (com_msg_t * msg) *(msg->reply) = g_strdup (_("Could not create dialog box.")); button = -1; } else { - e_container_foreach_leaf(dialog, focus_on_entry, NULL); + e_container_foreach_leaf (GTK_CONTAINER (dialog), + focus_on_entry, NULL); *(msg->reply) = NULL; button = gnome_dialog_run_and_close (GNOME_DIALOG (dialog)); } |