From: John Darrington Date: Mon, 28 Dec 2009 09:20:45 +0000 (+0100) Subject: Avoid warnings about adjustments with non-zero page sizes X-Git-Tag: fc11-i386-build68~3 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=9ff56712d2c03adaf0fb23a501c3ba0e00471b20 Avoid warnings about adjustments with non-zero page sizes --- diff --git a/src/ui/gui/psppire-var-sheet.c b/src/ui/gui/psppire-var-sheet.c index 70e1044f..920d84e4 100644 --- a/src/ui/gui/psppire-var-sheet.c +++ b/src/ui/gui/psppire-var-sheet.c @@ -453,9 +453,9 @@ var_sheet_change_active_cell (PsppireVarSheet *vs, } adj = gtk_adjustment_new (current_value, - r_min, r_max, - 1.0, 1.0, 1.0 /* steps */ - ); + r_min, r_max, + 1.0, 1.0, /* steps */ + 0); psppire_sheet_change_entry (sheet, GTK_TYPE_SPIN_BUTTON);