r19881 - gnucash/trunk/src/gnome-utils - Fix GtkSpinButton with page-size deprecated warning in gnucash.trace

Geert Janssens gjanssens at code.gnucash.org
Wed Nov 24 13:45:33 EST 2010


Author: gjanssens
Date: 2010-11-24 13:45:33 -0500 (Wed, 24 Nov 2010)
New Revision: 19881
Trac: http://svn.gnucash.org/trac/changeset/19881

Modified:
   gnucash/trunk/src/gnome-utils/dialog-options.c
Log:
Fix GtkSpinButton with page-size deprecated warning in gnucash.trace

Modified: gnucash/trunk/src/gnome-utils/dialog-options.c
===================================================================
--- gnucash/trunk/src/gnome-utils/dialog-options.c	2010-11-24 15:46:16 UTC (rev 19880)
+++ gnucash/trunk/src/gnome-utils/dialog-options.c	2010-11-24 18:45:33 UTC (rev 19881)
@@ -1976,7 +1976,7 @@
     adj = GTK_ADJUSTMENT(gtk_adjustment_new(lower_bound, lower_bound,
                                             upper_bound, step_size,
                                             step_size * 5.0,
-                                            step_size * 5.0));
+                                            0));
     value = gtk_spin_button_new(adj, step_size, num_decimals);
     gtk_spin_button_set_numeric(GTK_SPIN_BUTTON(value), TRUE);
 



More information about the gnucash-changes mailing list