comparison gui/dialog/about.c @ 36010:5c720c434d56

Silence "warning: unused parameter".
author ib
date Sat, 30 Mar 2013 15:09:51 +0000
parents d154d0035cb0
children d2d776c8e040
comparison
equal deleted inserted replaced
36009:e7bc0058139a 36010:5c720c434d56
27 #include "tools.h" 27 #include "tools.h"
28 28
29 GtkWidget * About = NULL; 29 GtkWidget * About = NULL;
30 30
31 static void abWidgetDestroy( GtkButton * button, gpointer user_data ) 31 static void abWidgetDestroy( GtkButton * button, gpointer user_data )
32 { gtk_widget_destroy( About ); } 32 {
33 (void) button;
34 (void) user_data;
35
36 gtk_widget_destroy( About );
37 }
33 38
34 static GtkWidget * CreateAbout( void ) 39 static GtkWidget * CreateAbout( void )
35 { 40 {
36 GtkWidget * vbox; 41 GtkWidget * vbox;
37 GtkWidget * pixmap1; 42 GtkWidget * pixmap1;