X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fgtksheet%2Fgsheet-uniform-column.c;h=c0f6732a5e51c2a38965d6c8347ae82abca560cb;hb=b069636965a498047e2eb12a31c8c45694cfb221;hp=5093da2fbef9a199d2993c5e5e3585fa5a4e5e9a;hpb=ad10aed69efec78ddbfcdbe4774bf9a0435fcfd6;p=pspp diff --git a/lib/gtksheet/gsheet-uniform-column.c b/lib/gtksheet/gsheet-uniform-column.c index 5093da2fbe..c0f6732a5e 100644 --- a/lib/gtksheet/gsheet-uniform-column.c +++ b/lib/gtksheet/gsheet-uniform-column.c @@ -90,7 +90,6 @@ g_sheet_uniform_column_new (gint width, gint n_columns) ug = G_SHEET_UNIFORM_COLUMN(retval); ug->n_columns = n_columns; ug->width = width; - ug->is_visible = TRUE; ug->is_sensitive = FALSE; return retval; @@ -113,15 +112,6 @@ g_sheet_uniform_column_get_sensitivity (const GSheetColumn *geom, glong u) } -static gboolean -g_sheet_uniform_column_get_visibility (const GSheetColumn *geom, glong u) -{ - GSheetUniformColumn *ug = G_SHEET_UNIFORM_COLUMN (geom); - - return ug->is_visible; -} - - static gchar * g_sheet_uniform_column_get_button_label (const GSheetColumn *geom, glong u) { @@ -176,7 +166,6 @@ g_sheet_column_init (GSheetColumnIface *iface) { iface->get_width = g_sheet_uniform_column_get_width ; iface->get_sensitivity = g_sheet_uniform_column_get_sensitivity ; - iface->get_visibility = g_sheet_uniform_column_get_visibility ; iface->get_justification = g_sheet_uniform_column_get_justification; iface->get_column_count = g_sheet_uniform_column_get_column_count; iface->get_button_label = g_sheet_uniform_column_get_button_label;