diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-08-09 00:06:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-09 00:06:30 +0800 |
commit | 0a5a436616621bd3cbf9eefa69ca25abe8ef2b11 (patch) | |
tree | 4d53a46161aaca8cd376db873894d2bc76f89933 | |
parent | 9774adff926e614eecb6845680bcdcf5a2bd732e (diff) | |
download | gsoc2013-evolution-0a5a436616621bd3cbf9eefa69ca25abe8ef2b11.tar.gz gsoc2013-evolution-0a5a436616621bd3cbf9eefa69ca25abe8ef2b11.tar.zst gsoc2013-evolution-0a5a436616621bd3cbf9eefa69ca25abe8ef2b11.zip |
Remove unused EShell pointer from ImportData.
2008-08-08 Matthew Barnes <mbarnes@redhat.com>
* shell/e-shell-importer.c:
Remove unused EShell pointer from ImportData.
svn path=/trunk/; revision=35939
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-importer.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 6ecd53c350..1296ec35c8 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2008-08-08 Matthew Barnes <mbarnes@redhat.com> + + * e-shell-importer.c: + Remove unused EShell pointer from ImportData. + 2008-08-07 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #467115 diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index bf2a67f9b0..23b473a0a9 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -85,7 +85,6 @@ typedef struct _ImportDialogImporterPage { } ImportDialogImporterPage; typedef struct _ImportData { - EShell *shell; EShellWindow *window; GladeXML *wizard; @@ -678,7 +677,6 @@ e_shell_importer_start_import (EShellWindow *shell_window) dialog_open = TRUE; data->window = shell_window; - data->shell = e_shell_window_peek_shell (data->window); gladefile = g_build_filename (EVOLUTION_GLADEDIR, "import.glade", NULL); data->wizard = glade_xml_new (gladefile, NULL, NULL); |