diff options
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index c0a7f6fc85..938967105d 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -28,7 +28,6 @@ #include "e-util/e-dialog-utils.h" -#include "e-setup.h" #include "e-shell-constants.h" #include "e-shell-offline-handler.h" #include "e-shell-settings-dialog.h" @@ -914,7 +913,6 @@ e_shell_go_online (EShell *shell, EComponentInfo *info = p->data; CORBA_Environment ev; GNOME_Evolution_Offline offline_interface; - const char *id; CORBA_exception_init (&ev); @@ -928,7 +926,7 @@ e_shell_go_online (EShell *shell, GNOME_Evolution_Offline_goOnline (offline_interface, &ev); if (ev._major != CORBA_NO_EXCEPTION) - g_warning ("Error putting component `%s' online.", id); + g_warning ("Error putting component `%s' online.", info->id); CORBA_exception_free (&ev); } |