X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-var-store.c;h=f673b54eddefa73bf8b248ad726da64141581316;hb=880d5a149fbdfdc074f49f590cb8aca8457b2446;hp=7edc665a21cee5cd843e990d312d28648889ae30;hpb=57e1bd2b5e86c0f47ed8fcc23c4945034afb2053;p=pspp-builds.git diff --git a/src/ui/gui/psppire-var-store.c b/src/ui/gui/psppire-var-store.c index 7edc665a..f673b54e 100644 --- a/src/ui/gui/psppire-var-store.c +++ b/src/ui/gui/psppire-var-store.c @@ -796,7 +796,7 @@ psppire_var_store_get_column_count (const GSheetModel * model) /* Row related funcs */ static glong -geometry_get_row_count (const GSheetRow *geom, gpointer data) +geometry_get_row_count (const GSheetRow *geom) { gint rows = 0; PsppireVarStore *vs = PSPPIRE_VAR_STORE (geom); @@ -809,14 +809,14 @@ geometry_get_row_count (const GSheetRow *geom, gpointer data) static gint -geometry_get_height (const GSheetRow *geom, glong row, gpointer data) +geometry_get_height (const GSheetRow *geom, glong row) { return 25; } static gboolean -geometry_is_sensitive (const GSheetRow *geom, glong row, gpointer data) +geometry_is_sensitive (const GSheetRow *geom, glong row) { PsppireVarStore *vs = PSPPIRE_VAR_STORE (geom); @@ -834,7 +834,7 @@ gboolean always_true () static gchar * -geometry_get_button_label (const GSheetRow *geom, glong unit, gpointer data) +geometry_get_button_label (const GSheetRow *geom, glong unit) { gchar *label = g_strdup_printf (_("%ld"), unit + 1);