aboutsummaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-04-23 01:41:38 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-04-23 01:41:38 +0800
commit4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a (patch)
treec5d6745834d95b992b6ca45b387be89bf2c1675e /shell/main.c
parent4a2b03a4add41f6a78395ccaca76bd4fa76a08a3 (diff)
downloadgsoc2013-evolution-4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a.tar
gsoc2013-evolution-4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a.tar.gz
gsoc2013-evolution-4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a.tar.bz2
gsoc2013-evolution-4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a.tar.lz
gsoc2013-evolution-4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a.tar.xz
gsoc2013-evolution-4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a.tar.zst
gsoc2013-evolution-4ebd3f873ff7095dfe8c854d59e1f90d7e2b8e1a.zip
Fix for bug #271851
svn path=/trunk/; revision=33444
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/main.c b/shell/main.c
index f9b59170f7..c8b49811b8 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -382,8 +382,12 @@ idle_cb (gchar **uris)
CORBA_exception_free (&ev);
- if (shell == NULL)
+ if (shell == NULL) {
+ /*there is another instance but because we don't open any windows
+ we must notify the startup was complete manually*/
+ gdk_notify_startup_complete ();
bonobo_main_quit ();
+ }
return FALSE;
}