From 0e6bca76165008d39acfffd17216053f3b004e8d Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Thu, 15 Jan 2004 16:02:40 +0000 Subject: kill the correct binary, tidy includes 2004-01-15 JP Rosevear * main.c (kill_dataserver): kill the correct binary, tidy includes svn path=/trunk/; revision=24243 --- shell/ChangeLog | 4 ++++ shell/Evolution-Component.idl | 2 +- shell/main.c | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/shell/ChangeLog b/shell/ChangeLog index 86b741cba5..a4aa7b2c3d 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2004-01-15 JP Rosevear + + * main.c (kill_dataserver): kill the correct binary, tidy includes + 2004-01-15 JP Rosevear * main.c (detect_version): move version detection here diff --git a/shell/Evolution-Component.idl b/shell/Evolution-Component.idl index e199629066..dc23fc40be 100644 --- a/shell/Evolution-Component.idl +++ b/shell/Evolution-Component.idl @@ -65,7 +65,7 @@ module Evolution { /* Pop up a new editing dialog for the item with the specified @item_type_name. */ void requestCreateItem (in string item_type_name) - raises (UnknownType); + raises (UnknownType, Failed); /*** URI handling (e.g. for the command-line, "evolution diff --git a/shell/main.c b/shell/main.c index 6fc007c6e8..e3eff9b1e9 100644 --- a/shell/main.c +++ b/shell/main.c @@ -20,7 +20,9 @@ * Author: Ettore Perazzoli */ +#ifdef HAVE_CONFIG_H #include +#endif #include "e-util/e-dialog-utils.h" #include "e-util/e-gtk-utils.h" @@ -28,7 +30,6 @@ #include "e-icon-factory.h" #include "e-shell-constants.h" -#include "e-shell-window.h" /* FIXME */ #include "e-shell.h" @@ -178,7 +179,7 @@ kill_dataserver (void) g_print ("(Killing old version of evolution-data-server...)\n"); system (KILL_PROCESS_CMD " -9 lt-evolution-data-server 2> /dev/null"); - system (KILL_PROCESS_CMD " -9 evolution-data-server 2> /dev/null"); + system (KILL_PROCESS_CMD " -9 evolution-data-server-1.0 2> /dev/null"); system (KILL_PROCESS_CMD " -9 lt-evolution-alarm-notify 2> /dev/null"); system (KILL_PROCESS_CMD " -9 evolution-alarm-notify 2> /dev/null"); -- cgit