diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-12-04 04:08:14 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-12-04 04:08:14 +0800 |
commit | 9407166101cd70d7920e1122eb96617b6028ea38 (patch) | |
tree | 384466b3c878b251b14ba88abf71c7a3ab85767b /shell/e-shell.c | |
parent | da19e7a409b666b83895376bf4fe5b4f8d052f86 (diff) | |
download | gsoc2013-evolution-9407166101cd70d7920e1122eb96617b6028ea38.tar.gz gsoc2013-evolution-9407166101cd70d7920e1122eb96617b6028ea38.tar.zst gsoc2013-evolution-9407166101cd70d7920e1122eb96617b6028ea38.zip |
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
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 3 |
1 files changed, 3 insertions, 0 deletions
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, |