aboutsummaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/shell/main.c b/shell/main.c
index 740eb091ca..8a729822da 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -29,6 +29,7 @@
#include "e-icon-factory.h"
#include "e-shell-constants.h"
#include "e-shell-config.h"
+#include "e-shell-window.h" /* FIXME */
#include "e-setup.h"
#include "e-shell.h"
@@ -439,7 +440,7 @@ idle_cb (void *data)
view, AND we can't load the user's previous settings, then show the default
URI. */
if (! have_evolution_uri) {
- e_shell_create_view (shell, NULL, NULL);
+ /* e_shell_create_view (shell, NULL, NULL); FIXME */
display_default = TRUE;
displayed_any = TRUE;
} else {
@@ -476,8 +477,12 @@ idle_cb (void *data)
CORBA_exception_free (&ev);
- if (shell == NULL)
+ if (shell == NULL) {
bonobo_main_quit ();
+ } else {
+ /* FIXME */
+ gtk_widget_show (e_shell_window_new (shell));
+ }
return FALSE;
}