Avoid warnings about adjustments with non-zero page sizes
authorJohn Darrington <john@darrington.wattle.id.au>
Mon, 28 Dec 2009 09:20:45 +0000 (10:20 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Mon, 28 Dec 2009 09:20:45 +0000 (10:20 +0100)
src/ui/gui/psppire-var-sheet.c

index 70e1044fcb25ed9d46dbc2fcc8d2232c3687fda6..920d84e4b36b1c3d9d29ed4595d46e058986e72f 100644 (file)
@@ -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);