diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-03-19 21:06:38 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-03-19 21:06:38 +0000 |
commit | 489c376bf4b98f0e521f6ab4992a1c9ac7529657 (patch) | |
tree | 3b065d89aebf3147870f232f643f4af2f929d0b1 /gtk/gtkrange.h | |
parent | c5f68d2527735465da0f11013871b5b719aae405 (diff) | |
download | gtk+-489c376bf4b98f0e521f6ab4992a1c9ac7529657.tar.gz |
Handle quoting of / with \; properly handle __ in paths, quote " and \n in
Mon Mar 19 15:53:36 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkitemfactory.c gtk/testgtk.c: Handle quoting of / with \; properly
handle __ in paths, quote " and \n in gtk_item_factory_dump_items().
* gtk/gtkadjustment.[ch] gtk/gtkclist.c gtk/gtkhruler.c gtk/gtklayout.c
gtk/gtklist.c gtk/gtkprogress.[ch] gtk/gtkprogressbar.[ch] gtk/gtkrange.[ch]
gtk/gtkruler.[ch] gtk/gtkscale.c gtk/gtkscrolledwindow.c gtk/gtkspinbutton.[ch]
gtk/gtktext.c gtk/gtktextview.c gtk/gtkvruler.c gtk/testgtk.c:
Change float to double everywhere with the exception of 0<->1.0 alignment
and GtkCurve.
Diffstat (limited to 'gtk/gtkrange.h')
-rw-r--r-- | gtk/gtkrange.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtkrange.h b/gtk/gtkrange.h index 145412ad63..925715b688 100644 --- a/gtk/gtkrange.h +++ b/gtk/gtkrange.h @@ -73,10 +73,10 @@ struct _GtkRange guint32 timer; - gfloat old_value; - gfloat old_lower; - gfloat old_upper; - gfloat old_page_size; + gdouble old_value; + gdouble old_lower; + gdouble old_upper; + gdouble old_page_size; GtkAdjustment *adjustment; }; @@ -105,7 +105,7 @@ struct _GtkRangeClass gint (* trough_click) (GtkRange *range, gint x, gint y, - gfloat *jump_perc); + gdouble *jump_perc); gint (* trough_keys) (GtkRange *range, GdkEventKey *key, GtkScrollType *scroll, @@ -138,18 +138,18 @@ void _gtk_range_slider_update (GtkRange *range); gint _gtk_range_trough_click (GtkRange *range, gint x, gint y, - gfloat *jump_perc); + gdouble *jump_perc); void _gtk_range_default_hslider_update (GtkRange *range); void _gtk_range_default_vslider_update (GtkRange *range); gint _gtk_range_default_htrough_click (GtkRange *range, gint x, gint y, - gfloat *jump_perc); + gdouble *jump_perc); gint _gtk_range_default_vtrough_click (GtkRange *range, gint x, gint y, - gfloat *jump_perc); + gdouble *jump_perc); void _gtk_range_default_hmotion (GtkRange *range, gint xdelta, gint ydelta); |