annotate src/xs_genui.c @ 1013:f3c28acd79b1

Add (void) dummies to silence compiler warnings;
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 04 Oct 2014 17:33:04 +0300
parents d183ac29b879
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 #ifdef HAVE_CONFIG_H
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 # include <config.h>
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 #endif
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 #include <gtk/gtk.h>
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 #include "xs_genui.h"
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 #include "xs_interface.h"
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 #include "xs_glade.h"
334
19c89f9ca2cc Misc commit.
Matti Hamalainen <ccr@tnsp.org>
parents: 282
diff changeset
10
716
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
11
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
12 void
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
13 xs_cfg_sp2_filter_new (GtkButton *button,
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
14 gpointer user_data)
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
15 {
1013
f3c28acd79b1 Add (void) dummies to silence compiler warnings;
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
16 (void) button;
f3c28acd79b1 Add (void) dummies to silence compiler warnings;
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
17 (void) user_data;
716
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
18 }
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
19
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
20
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
21 gboolean
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
22 xs_filter_newwin_delete (GtkWidget *widget,
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
23 GdkEvent *event,
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
24 gpointer user_data)
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
25 {
1013
f3c28acd79b1 Add (void) dummies to silence compiler warnings;
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
26 (void) widget;
f3c28acd79b1 Add (void) dummies to silence compiler warnings;
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
27 (void) event;
f3c28acd79b1 Add (void) dummies to silence compiler warnings;
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
28 (void) user_data;
716
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
29 return FALSE;
5f215b88d507 Some work on the GUI.
Matti Hamalainen <ccr@tnsp.org>
parents: 653
diff changeset
30 }