X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fgtksheet%2Fgsheet-uniform-row.c;h=847916c56d863a54edd5c6f79a6cf838a7355714;hb=c5bf90ff8baa7a81274421acb24a915c953e560f;hp=7ab9b600a148ec4effc607193e11386d59b7cdb1;hpb=a1b98c15156a32b058294ba4f5c54fb745550222;p=pspp-builds.git diff --git a/lib/gtksheet/gsheet-uniform-row.c b/lib/gtksheet/gsheet-uniform-row.c index 7ab9b600..847916c5 100644 --- a/lib/gtksheet/gsheet-uniform-row.c +++ b/lib/gtksheet/gsheet-uniform-row.c @@ -90,7 +90,6 @@ g_sheet_uniform_row_new (gint height, gint n_rows) ug = G_SHEET_UNIFORM_ROW(retval); ug->n_rows = n_rows; ug->height = height; - ug->is_visible = TRUE; return retval; } @@ -112,15 +111,6 @@ g_sheet_uniform_row_get_sensitivity (const GSheetRow *geom, glong u) } -static gboolean -g_sheet_uniform_row_get_visibility (const GSheetRow *geom, glong u) -{ - GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW (geom); - - return ug->is_visible; -} - - static gchar * g_sheet_uniform_row_get_button_label (const GSheetRow *geom, glong u) { @@ -192,7 +182,6 @@ g_sheet_row_init (GSheetRowIface *iface) { iface->get_height = g_sheet_uniform_row_get_height; iface->get_sensitivity = g_sheet_uniform_row_get_sensitivity ; - iface->get_visibility = g_sheet_uniform_row_get_visibility; iface->get_row_count = g_sheet_uniform_row_get_row_count; iface->get_button_label = g_sheet_uniform_row_get_button_label; iface->top_ypixel = g_sheet_uniform_row_top_ypixel;