Fix GtkSpinButton with page-size deprecated warning in gnucash.trace

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19881 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2010-11-24 18:45:33 +00:00
parent 0882ec4722
commit 641de9593b

View File

@ -1976,7 +1976,7 @@ gnc_option_set_ui_widget_number_range (GNCOption *option, GtkBox *page_box,
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);