diff src/xs_about.c @ 136:92952aeccb77

Minor fixes and improvements, nanosid support.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 23 Feb 2004 18:00:00 +0000
parents 2bc607888f53
children 995086002a8f
line wrap: on
line diff
--- a/src/xs_about.c	Mon Feb 23 17:59:02 2004 +0000
+++ b/src/xs_about.c	Mon Feb 23 18:00:00 2004 +0000
@@ -27,7 +27,7 @@
 static GtkWidget *xs_aboutwin = NULL;
 
 
-int xs_about_ok(void)
+gint xs_about_ok(void)
 {
  gtk_widget_destroy(xs_aboutwin);
  xs_aboutwin = NULL;
@@ -173,9 +173,7 @@
  gtk_container_add (GTK_CONTAINER (alignment6), about_close);
  GTK_WIDGET_SET_FLAGS (about_close, GTK_CAN_DEFAULT);
 
- gtk_signal_connect (GTK_OBJECT (about_close), "clicked",
-                    GTK_SIGNAL_FUNC (xs_about_ok),
-                    NULL);
+ gtk_signal_connect (GTK_OBJECT (about_close), "clicked", GTK_SIGNAL_FUNC (xs_about_ok), NULL);
 
  gtk_widget_show(xs_aboutwin);
 }