[Fix #7109, Evolution crashes when the splash screen dialog is
killed by clicking the "X" button.] * e-shell.c (e_shell_construct): Connect `gtk_widget_hide_on_delete()' correctly. svn path=/trunk/; revision=11962
This commit is contained in:
@ -1,4 +1,13 @@
|
|||||||
|
2001-08-13 Ettore Perazzoli <ettore@ximian.com>
|
||||||
|
|
||||||
|
[Fix #7109, Evolution crashes when the splash screen dialog is
|
||||||
|
killed by clicking the "X" button.]
|
||||||
|
|
||||||
|
* e-shell.c (e_shell_construct): Connect
|
||||||
|
`gtk_widget_hide_on_delete()' correctly.
|
||||||
|
|
||||||
2001-08-13 Anna Marie Dirks <anna@ximian.com>
|
2001-08-13 Anna Marie Dirks <anna@ximian.com>
|
||||||
|
|
||||||
* importer/import.glade : Changed all instances of "druid"
|
* importer/import.glade : Changed all instances of "druid"
|
||||||
and "wizard" to "assistant".
|
and "wizard" to "assistant".
|
||||||
|
|
||||||
|
@ -899,7 +899,8 @@ e_shell_construct (EShell *shell,
|
|||||||
splash = NULL;
|
splash = NULL;
|
||||||
} else {
|
} else {
|
||||||
splash = e_splash_new ();
|
splash = e_splash_new ();
|
||||||
gtk_widget_hide_on_delete (splash);
|
gtk_signal_connect (GTK_OBJECT (splash), "delete_event",
|
||||||
|
GTK_SIGNAL_FUNC (gtk_widget_hide_on_delete), NULL);
|
||||||
gtk_widget_show (splash);
|
gtk_widget_show (splash);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user