diff --git a/ChangeLog b/ChangeLog index f7aeec0c6..41475f6ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-02 Johan Dahlin + + * docs/tutorial/gtk-tut.sgml: Remove an extra space and swap word order + (#518166, Matt Kraai) + 2008-03-02 Johan Dahlin * docs/tutorial/gtk-tut.sgml: Add a missing space diff --git a/docs/tutorial/gtk-tut.sgml b/docs/tutorial/gtk-tut.sgml index a141279fb..335864789 100755 --- a/docs/tutorial/gtk-tut.sgml +++ b/docs/tutorial/gtk-tut.sgml @@ -4768,7 +4768,7 @@ buttons. Lets look at how to create a Spin Button: GtkWidget *gtk_spin_button_new( GtkAdjustment *adjustment, - gdouble climb_rate, + gdouble climb_rate, guint digits ); @@ -4913,7 +4913,7 @@ void gtk_spin_button_set_update_policy( GtkSpinButton *spin_button, inserted text and syncing its value with the values of the Adjustment. -In the case of GTK_UPDATE_IF_VALID the Spin Button only value +In the case of GTK_UPDATE_IF_VALID the Spin Button value only gets changed if the text input is a numeric value that is within the range specified by the Adjustment. Otherwise the text is reset to the current value.