From: Jean-Philippe Orsini Date: Wed, 24 Sep 2014 12:15:43 +0000 (+0200) Subject: missing decl X-Git-Tag: v1.2.0~135 X-Git-Url: http://git.wpitchoune.net/gitweb/?p=psensor.git;a=commitdiff_plain;h=a882d5ca07c48af6c481f86c2fea482578e8c01c missing decl --- diff --git a/src/ui_graph.c b/src/ui_graph.c index e5e0e76..0ea7bfe 100644 --- a/src/ui_graph.c +++ b/src/ui_graph.c @@ -45,7 +45,7 @@ on_expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data) return FALSE; } -void smooth_curves_enabled_changed_cbk(void *data) +static void smooth_curves_enabled_changed_cbk(void *data) { is_smooth_curves_enabled = config_is_smooth_curves_enabled(); } diff --git a/src/ui_sensorlist.h b/src/ui_sensorlist.h index 8e4d6c6..4b9b720 100644 --- a/src/ui_sensorlist.h +++ b/src/ui_sensorlist.h @@ -28,4 +28,6 @@ void ui_sensorlist_create(struct ui_psensor *); /* Update values current/min/max */ void ui_sensorlist_update(struct ui_psensor *ui, bool complete); +void ui_sensorlist_cb_graph_toggled(GtkCellRendererToggle *, gchar *, gpointer); + #endif