From: Andrea Zagli Date: Sun, 9 Oct 2011 10:51:10 +0000 (+0200) Subject: Bugfix on calculating column width in RptReport::new_from_gtktreeview. X-Git-Tag: 0.5.0~22 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=86898816f454fc3f71b5c0e49f975c36c1e0c27a;p=reptool%2Flibreptool Bugfix on calculating column width in RptReport::new_from_gtktreeview. --- diff --git a/src/rptreport.c b/src/rptreport.c index b151d42..caf144d 100644 --- a/src/rptreport.c +++ b/src/rptreport.c @@ -550,7 +550,7 @@ RptReport guint x; GtkTreeViewColumn *col; - gint col_width; + gfloat col_width; const gchar *col_title; gchar *field_name; @@ -618,7 +618,7 @@ RptReport col = (GtkTreeViewColumn *)columns->data; col_title = g_strdup_printf ("\"%s\"", gtk_tree_view_column_get_title (col)); - col_width = rpt_common_points_to_value (RPT_UNIT_MILLIMETRE, gtk_tree_view_column_get_width (col) / 96 * 72); + col_width = rpt_common_points_to_value (RPT_UNIT_MILLIMETRE, gtk_tree_view_column_get_width (col) / 96.0 * 72.0); point = rpt_common_rptpoint_new_with_values (x, 15); if (columns->next == NULL && x < page_size->width)