Update struct member docs since they're gdouble now instead of gfloat.

2001-10-28  Anders Carlsson  <andersca@gnu.org>

	* gtk/tmpl/gtkadjustment.sgml: Update struct member docs
	since they're gdouble now instead of gfloat. Fixes #55699.
This commit is contained in:
Anders Carlsson 2001-10-28 22:11:10 +00:00 committed by Anders Carlsson
parent 93f12bd6d4
commit 24277526fc
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2001-10-28 Anders Carlsson <andersca@gnu.org>
* gtk/tmpl/gtkadjustment.sgml: Update struct member docs
since they're gdouble now instead of gfloat. Fixes #55699.
2001-10-28 Matthias Clasen <matthiasc@poet.de>
* docs/reference/gtk/tmpl/gtkmenuitem.sgml,

View File

@ -37,22 +37,22 @@ The #GtkAdjustment-struct struct contains the following fields.
<tbody>
<row>
<entry>#gfloat lower;</entry>
<entry>#gdouble lower;</entry>
<entry>the minimum value.</entry>
</row>
<row>
<entry>#gfloat upper;</entry>
<entry>#gdouble upper;</entry>
<entry>the maximum value.</entry>
</row>
<row>
<entry>#gfloat value;</entry>
<entry>#gdouble value;</entry>
<entry>the current value.</entry>
</row>
<row>
<entry>#gfloat step_increment;</entry>
<entry>#gdouble step_increment;</entry>
<entry>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.
</row>
<row>
<entry>#gfloat page_increment;</entry>
<entry>#gdouble page_increment;</entry>
<entry>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.
</row>
<row>
<entry>#gfloat page_size;</entry>
<entry>#gdouble page_size;</entry>
<entry>the page size.
In a #GtkScrollbar this is the size of the area which is currently visible.
</entry>