aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-12-30 23:09:35 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-12-30 23:09:35 +0800
commit391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504 (patch)
tree209a2f99fff96ddb56569a095c67c5d4126b3625 /shell/e-shell.c
parent57679efdf629f8c3cd7ce2c255ee3c9839fa8618 (diff)
downloadgsoc2013-evolution-391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504.tar
gsoc2013-evolution-391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504.tar.gz
gsoc2013-evolution-391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504.tar.bz2
gsoc2013-evolution-391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504.tar.lz
gsoc2013-evolution-391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504.tar.xz
gsoc2013-evolution-391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504.tar.zst
gsoc2013-evolution-391ca0f24d68d822c9f0cc09bcf2e7c68a1fa504.zip
these just handle creating the ~/evolution dir and so are no longer needed
2003-12-30 JP Rosevear <jpr@ximian.com> * e-setup.[hc]: these just handle creating the ~/evolution dir and so are no longer needed * main.c (main): don't setup the old ~/evolution dir * Makefile.am: don't build dead files * e-shell.c (e_shell_go_online): get the id from the component info svn path=/trunk/; revision=24024
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c4
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);
}