2004-05-11  Jody Goldberg <jody@gnome.org>

	From ruben@lambda1.be
	https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=140047
	* main.c (main) : s/XServer/X Server/
	and a patch to use g_signal_connect to avoid a warning
This commit is contained in:
Jody Goldberg 2004-05-11 22:49:11 +00:00 committed by Jody Goldberg
parent 85cd6e02f9
commit 746507f27e
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2004-05-11 Jody Goldberg <jody@gnome.org>
From ruben@lambda1.be
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=140047
* main.c (main) : s/XServer/X Server/
and a patch to use g_signal_connect
2004-04-15 Jody Goldberg <jody@gnome.org> 2004-04-15 Jody Goldberg <jody@gnome.org>
* Release 2.6.1 * Release 2.6.1

View file

@ -817,7 +817,7 @@ main (int argc, char *argv[])
info = read_display_info (display); info = read_display_info (display);
dialog = create_dialog (info); dialog = create_dialog (info);
gtk_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (cb_dialog_response), info); g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (cb_dialog_response), info);
gtk_widget_show (dialog); gtk_widget_show (dialog);
gtk_main (); gtk_main ();