X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fui_sensorlist.h;h=542df7d8eb16849b5eaf38747699b9ca99d79164;hb=11b9d16a192f09960a5a0a36d1aa8ce577a8991a;hp=8691581c52539f6c536eca7dfaa86be6d5cdea21;hpb=faec1b967798dae821ace41fb45fe8df42e4b9cd;p=psensor.git diff --git a/src/ui_sensorlist.h b/src/ui_sensorlist.h index 8691581..542df7d 100644 --- a/src/ui_sensorlist.h +++ b/src/ui_sensorlist.h @@ -28,16 +28,17 @@ struct ui_sensorlist { /* The GtkTreeView widget containing the list of sensors */ GtkTreeView *treeview; + /* Scrolled widget containing the GtkTreeView */ GtkWidget *widget; struct psensor **sensors; }; -struct ui_sensorlist *ui_sensorlist_create(struct psensor **); +void ui_sensorlist_create(struct ui_psensor *); /* Update values current/min/max */ -void ui_sensorlist_update(struct ui_sensorlist *list); +void ui_sensorlist_update(struct ui_psensor *ui); -void ui_sensorlist_update_sensors_preferences(struct ui_sensorlist *); +void ui_sensorlist_update_sensors_preferences(struct ui_psensor *); #endif