From 24277526fc8a4ecbba8600297704d31df7f9662d Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Sun, 28 Oct 2001 22:11:10 +0000 Subject: [PATCH] Update struct member docs since they're gdouble now instead of gfloat. 2001-10-28 Anders Carlsson * gtk/tmpl/gtkadjustment.sgml: Update struct member docs since they're gdouble now instead of gfloat. Fixes #55699. --- docs/reference/ChangeLog | 5 +++++ docs/reference/gtk/tmpl/gtkadjustment.sgml | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 0c71e991f3..7235391e5c 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2001-10-28 Anders Carlsson + + * gtk/tmpl/gtkadjustment.sgml: Update struct member docs + since they're gdouble now instead of gfloat. Fixes #55699. + 2001-10-28 Matthias Clasen * docs/reference/gtk/tmpl/gtkmenuitem.sgml, diff --git a/docs/reference/gtk/tmpl/gtkadjustment.sgml b/docs/reference/gtk/tmpl/gtkadjustment.sgml index cb17699843..740762dcfd 100644 --- a/docs/reference/gtk/tmpl/gtkadjustment.sgml +++ b/docs/reference/gtk/tmpl/gtkadjustment.sgml @@ -37,22 +37,22 @@ The #GtkAdjustment-struct struct contains the following fields. -#gfloat lower; +#gdouble lower; the minimum value. -#gfloat upper; +#gdouble upper; the maximum value. -#gfloat value; +#gdouble value; the current value. -#gfloat step_increment; +#gdouble step_increment; the increment to use to make minor changes to the value. In a #GtkScrollbar this increment is used when the mouse is clicked on the arrows at the top and bottom of the scrollbar, to scroll by a small amount. @@ -60,7 +60,7 @@ arrows at the top and bottom of the scrollbar, to scroll by a small amount. -#gfloat page_increment; +#gdouble page_increment; the increment to use to make major changes to the value. In a #GtkScrollbar this increment is used when the mouse is clicked in the trough, to scroll by a large amount. @@ -68,7 +68,7 @@ trough, to scroll by a large amount. -#gfloat page_size; +#gdouble page_size; the page size. In a #GtkScrollbar this is the size of the area which is currently visible.