From 9407166101cd70d7920e1122eb96617b6028ea38 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Wed, 3 Dec 2003 20:08:14 +0000 Subject: If component_id is the empty string, pass NULL for it to * e-shell.c (impl_Shell_createNewWindow): If component_id is the empty string, pass NULL for it to e_shell_create_window() so we get the default. * main.c (idle_cb): Pass an empty string for component_id to createNewWindow() if the default_component_id is NULL. svn path=/trunk/; revision=23620 --- shell/ChangeLog | 13 ++++++++++++- shell/e-shell.c | 3 +++ shell/main.c | 5 ++++- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/shell/ChangeLog b/shell/ChangeLog index b3c4b4ae00..2637f005cc 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,6 +1,17 @@ 2003-12-03 Ettore Perazzoli - * Makefile.am: move e-task-bar and e-task-widget into libeshell. + [Fix for #51619.] + + * e-shell.c (impl_Shell_createNewWindow): If component_id is the + empty string, pass NULL for it to e_shell_create_window() so we + get the default. + + * main.c (idle_cb): Pass an empty string for component_id to + createNewWindow() if the default_component_id is NULL. + +2003-12-03 Ettore Perazzoli + + * Makefile.am: Move e-task-bar and e-task-widget into libeshell. [Fix pointed out by Bernard Leach .] 2003-12-03 Ettore Perazzoli diff --git a/shell/e-shell.c b/shell/e-shell.c index a29461ef00..e5e7281361 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -185,6 +185,9 @@ impl_Shell_createNewWindow (PortableServer_Servant servant, bonobo_object = bonobo_object_from_servant (servant); shell = E_SHELL (bonobo_object); + if (component_id[0] == '\0') + component_id = NULL; + shell_window = e_shell_create_window (shell, component_id, NULL); if (shell_window == NULL) { CORBA_exception_set (ev, CORBA_USER_EXCEPTION, diff --git a/shell/main.c b/shell/main.c index dfc4a17643..2807600f68 100644 --- a/shell/main.c +++ b/shell/main.c @@ -436,7 +436,10 @@ idle_cb (void *data) CORBA_Environment ev; CORBA_exception_init (&ev); - GNOME_Evolution_Shell_createNewWindow (corba_shell, default_component_id, &ev); + if (default_component_id == NULL) + GNOME_Evolution_Shell_createNewWindow (corba_shell, "", &ev); + else + GNOME_Evolution_Shell_createNewWindow (corba_shell, default_component_id, &ev); CORBA_exception_free (&ev); } -- cgit v1.2.3