diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-09-27 04:09:50 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-09-27 04:09:50 +0000 |
commit | e8c659edd2dd36b276dbcc70a5645841d28fd51c (patch) | |
tree | e11c2954baa425cbfc7a629b5ecd5f0e2e029044 /gtk/gtkpathbar.h | |
parent | 6260f1aa2c67b4e545f7b7691f6b810e5f07c9e5 (diff) | |
download | gtk+-e8c659edd2dd36b276dbcc70a5645841d28fd51c.tar.gz |
Only need a bit for need_timer.
2004-09-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkpathbar.h (struct _GtkPathBar): Only need a bit for
need_timer.
Diffstat (limited to 'gtk/gtkpathbar.h')
-rw-r--r-- | gtk/gtkpathbar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkpathbar.h b/gtk/gtkpathbar.h index f1faab7b5e..191e953f83 100644 --- a/gtk/gtkpathbar.h +++ b/gtk/gtkpathbar.h @@ -59,9 +59,10 @@ struct _GtkPathBar gint16 slider_width; gint16 spacing; gint16 button_offset; + guint timer; guint slider_visible : 1; + guint need_timer : 1; guint ignore_click : 1; - guint need_timer; }; struct _GtkPathBarClass |