aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-01-14 14:47:37 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-01-14 14:47:37 +0000
commit8e8453df1bfd8d0477581bd4f1dab9eccc629ad3 (patch)
treee949e34d685f043a4a150ba01d4b35ece9a918c1 /gtk
parentd038e58987322be552735c7e5255d7f9d56915aa (diff)
Fix unused parameter warnings
svn path=/trunk/; revision=40499
Diffstat (limited to 'gtk')
-rw-r--r--gtk/graph_analysis.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/graph_analysis.c b/gtk/graph_analysis.c
index 86c5229f9e..3aa6167d5a 100644
--- a/gtk/graph_analysis.c
+++ b/gtk/graph_analysis.c
@@ -1392,7 +1392,7 @@ static gboolean draw_area_draw(GtkWidget *widget, cairo_t *cr, gpointer data)
}
#if !GTK_CHECK_VERSION(3,0,0)
/****************************************************************************/
-static gboolean expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data)
+static gboolean expose_event(GtkWidget *widget, GdkEventExpose *event _U_, gpointer data)
{
GtkAllocation allocation;
graph_analysis_data_t *user_data = data;
@@ -1448,7 +1448,7 @@ static gboolean draw_comments(GtkWidget *widget, cairo_t *cr, gpointer data)
}
#if !GTK_CHECK_VERSION(3,0,0)
/****************************************************************************/
-static gboolean expose_event_comments(GtkWidget *widget, GdkEventExpose *event, gpointer data)
+static gboolean expose_event_comments(GtkWidget *widget, GdkEventExpose *event _U_, gpointer data)
{
GtkAllocation allocation;
graph_analysis_data_t *user_data = data;
@@ -1500,7 +1500,7 @@ static gboolean draw_time(GtkWidget *widget, cairo_t *cr, gpointer data)
}
#else
/****************************************************************************/
-static gboolean expose_event_time(GtkWidget *widget, GdkEventExpose *event, gpointer data)
+static gboolean expose_event_time(GtkWidget *widget, GdkEventExpose *event _U_, gpointer data)
{
GtkAllocation allocation;
graph_analysis_data_t *user_data = data;