diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-26 10:46:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-26 22:28:24 +0800 |
commit | 43a11452262d7826e2341558a085ca5cee7b2ffb (patch) | |
tree | 2a74482a8e86f09c4680f5dbe7b8013d8451c695 /shell/e-shell-window-actions.c | |
parent | c30e55b2d5c2491076b1aace4f73ea0c642fba72 (diff) | |
download | gsoc2013-evolution-43a11452262d7826e2341558a085ca5cee7b2ffb.tar.gz gsoc2013-evolution-43a11452262d7826e2341558a085ca5cee7b2ffb.tar.zst gsoc2013-evolution-43a11452262d7826e2341558a085ca5cee7b2ffb.zip |
Rename EShellImporter to EImportAssistant and move it to widgets.
Diffstat (limited to 'shell/e-shell-window-actions.c')
-rw-r--r-- | shell/e-shell-window-actions.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/shell/e-shell-window-actions.c b/shell/e-shell-window-actions.c index 7ded180449..ce10bca488 100644 --- a/shell/e-shell-window-actions.c +++ b/shell/e-shell-window-actions.c @@ -28,8 +28,6 @@ #include <libedataserverui/e-passwords.h> -#include "e-shell-importer.h" - #define EVOLUTION_COPYRIGHT \ "Copyright \xC2\xA9 1999 - 2008 Novell, Inc. and Others" @@ -838,19 +836,19 @@ static void action_import_cb (GtkAction *action, EShellWindow *shell_window) { - GtkWidget *importer; + GtkWidget *assistant; - importer = e_shell_importer_new (GTK_WINDOW (shell_window)); + assistant = e_import_assistant_new (GTK_WINDOW (shell_window)); g_signal_connect ( - importer, "cancel", + assistant, "cancel", G_CALLBACK (gtk_widget_destroy), NULL); g_signal_connect ( - importer, "finished", + assistant, "finished", G_CALLBACK (gtk_widget_destroy), NULL); - gtk_widget_show (importer); + gtk_widget_show (assistant); } /** |