From 9ff56712d2c03adaf0fb23a501c3ba0e00471b20 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Mon, 28 Dec 2009 10:20:45 +0100 Subject: [PATCH] Avoid warnings about adjustments with non-zero page sizes --- src/ui/gui/psppire-var-sheet.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.30.2