Patch from Luke Suchocki to send HUP to parent instead of itself. Fixes
2004-06-18 Glynn Foster <glynn.foster@sun.com> * THANKS, src/about.c, src/progress.c: Patch from Luke Suchocki to send HUP to parent instead of itself. Fixes #144542.
This commit is contained in:
parent
c7ec5229bb
commit
6c68b70ca3
@ -1,3 +1,9 @@
|
||||
2004-06-18 Glynn Foster <glynn.foster@sun.com>
|
||||
|
||||
* THANKS, src/about.c, src/progress.c: Patch
|
||||
from Luke Suchocki to send HUP to parent
|
||||
instead of itself. Fixes #144542.
|
||||
|
||||
2004-06-17 Glynn Foster <glynn.foster@sun.com>
|
||||
|
||||
* src/main.c: Fix parsing errors. Patch from
|
||||
|
1
THANKS
1
THANKS
@ -25,6 +25,7 @@
|
||||
"Kristian Rietveld <kris gtk org>",
|
||||
"Christian Rose <menthos menthos com>",
|
||||
"Jakub Steiner <jimmac ximian com>",
|
||||
"Luke Suchocki <gnome lukiepoo com>",
|
||||
"Daniel d'Surreal <dagmar speakeasy net>",
|
||||
"Hidetoshi Tajima <hidetoshi tajima sun com>",
|
||||
"Tom Tromey <tromey redhat com>",
|
||||
|
@ -77,6 +77,7 @@ static const gchar *author_credits[] = {
|
||||
"Kristian Rietveld <kris gtk org>",
|
||||
"Christian Rose <menthos menthos com>",
|
||||
"Jakub Steiner <jimmac ximian com>",
|
||||
"Luke Suchocki <gnome lukiepoo com>",
|
||||
"Daniel d'Surreal <dagmar speakeasy net>",
|
||||
"Hidetoshi Tajima <hidetoshi tajima sun com>",
|
||||
"Tom Tromey <tromey redhat com>",
|
||||
|
@ -228,7 +228,7 @@ zenity_progress_dialog_response (GtkWidget *widget, int response, gpointer data)
|
||||
* I'm pretty sure there is a nice way to do this, but I'm clueless about this
|
||||
* stuff. Should be using SIGHUP instead of 1 though.
|
||||
*/
|
||||
kill (getpid (), 1);
|
||||
kill (getppid (), 1);
|
||||
zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL);
|
||||
gtk_main_quit ();
|
||||
break;
|
||||
|
Reference in New Issue
Block a user