diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-10-08 05:07:55 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-10-08 05:07:55 +0000 |
commit | 07e7719441f5927bc3c482717fc53f8529186e3a (patch) | |
tree | 4baea8ab1c47987dc80120c67cb16be141a16b8d /gtk/gtknotebook.c | |
parent | e4581869b4a93ab882439673159a8f77b2396e57 (diff) | |
download | gtk+-07e7719441f5927bc3c482717fc53f8529186e3a.tar.gz |
Apply a cleanup patch by Kjartan Maraas (#341812)
2006-10-08 Matthias Clasen <mclasen@redhat.com>
* Apply a cleanup patch by Kjartan Maraas (#341812)
Diffstat (limited to 'gtk/gtknotebook.c')
-rw-r--r-- | gtk/gtknotebook.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 66c44d29d9..d5a9b8a592 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -179,9 +179,9 @@ struct _GtkNotebookPrivate guint32 timestamp; - gboolean during_reorder : 1; - gboolean during_detach : 1; - gboolean has_scrolled : 1; + guint during_reorder : 1; + guint during_detach : 1; + guint has_scrolled : 1; }; static const GtkTargetEntry notebook_source_targets [] = { |