]> Pileus Git - ~andy/gtk/commitdiff
Update struct member docs since they're gdouble now instead of gfloat.
authorAnders Carlsson <andersca@gnu.org>
Sun, 28 Oct 2001 22:11:10 +0000 (22:11 +0000)
committerAnders Carlsson <andersca@src.gnome.org>
Sun, 28 Oct 2001 22:11:10 +0000 (22:11 +0000)
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.

docs/reference/ChangeLog
docs/reference/gtk/tmpl/gtkadjustment.sgml

index 0c71e991f332ff91f4d540ffb0c09e4523412453..7235391e5c7e10f66d02acac16cd26b629347a1c 100644 (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,
index cb17699843944b91df3845a4c5256f8e045494b8..740762dcfd9cf7ba83bd256c0d7716051efae016 100644 (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>