code style
[psensor.git] / src / ui_sensorlist.c
index af830ae..d568c9c 100644 (file)
@@ -72,7 +72,8 @@ void ui_sensorlist_update(struct ui_psensor *ui)
 
                str = psensor_value_to_string(s->type,
                                              s->measures[s->values_max_length -
-                                                         1].value);
+                                                         1].value.d_num);
+
                gtk_list_store_set(GTK_LIST_STORE(model), &iter, COL_TEMP, str,
                                   -1);
                free(str);
@@ -129,10 +130,11 @@ static int get_col_index_at_pos(GtkTreeView *view, int x)
        for (node = columns; node; node = node->next) {
                GtkTreeViewColumn *checkcol = (GtkTreeViewColumn *) node->data;
 
-               if (x >= colx && x < (colx + checkcol->width))
+               if (x >= colx &&
+                   x < (colx + gtk_tree_view_column_get_width(checkcol)))
                        return coli;
                else
-                       colx += checkcol->width;
+                       colx += gtk_tree_view_column_get_width(checkcol);
 
                coli++;
        }
@@ -311,7 +313,7 @@ static void create_widget(struct ui_psensor *ui)
 
        gtk_tree_view_insert_column_with_attributes(ui_sl->treeview,
                                                    -1,
-                                                   _("Current"),
+                                                   _("Value"),
                                                    renderer,
                                                    "text", COL_TEMP, NULL);