call gdk_notify_startup_complete() when we have delegated the work to

2007-01-19  Sven Neumann  <sven@gimp.org>

	* app/main.c: call gdk_notify_startup_complete() when we have
	delegated the work to another GIMP instance and are about to 
quit.


svn path=/trunk/; revision=21738
This commit is contained in:
Sven Neumann 2007-01-19 19:21:18 +00:00 committed by Sven Neumann
parent bfd1dd5f07
commit 8b405077c8
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-01-19 Sven Neumann <sven@gimp.org>
* app/main.c: call gdk_notify_startup_complete() when we have
delegated the work to another GIMP instance and are about to quit.
2007-01-19 Sven Neumann <sven@gimp.org>
* INSTALL

View File

@ -41,6 +41,10 @@
#include <dbus/dbus-glib.h>
#endif
#ifndef GIMP_CONSOLE_COMPILATION
#include <gdk/gdk.h>
#endif
#include "libgimpbase/gimpbase.h"
#include "core/core-types.h"
@ -368,6 +372,8 @@ main (int argc,
if (be_verbose)
g_print ("Found another GIMP instance, using that.\n");
gdk_notify_startup_complete ();
return EXIT_SUCCESS;
}