diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-09-23 19:20:48 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-09-23 19:20:48 +0000 |
commit | be19be61b7c7b10a14b3105e0ff48398080b9463 (patch) | |
tree | b028f48c78bb7c7a48094118bafcbbf202bd2b20 /gtk/gtkhandlebox.h | |
parent | d4fe39c3f880b58f1e41ed25491116a891718eab (diff) | |
download | gtk+-be19be61b7c7b10a14b3105e0ff48398080b9463.tar.gz |
Use 'signed int' not 'gint' for signed bitfields. (#93020, Vitaly Tishkov)
Mon Sep 23 14:58:04 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkhandlebox.h gtk/gtktextbtree.[ch]:
Use 'signed int' not 'gint' for signed bitfields.
(#93020, Vitaly Tishkov)
* gtk/gtktextlayout.h gtk/gtktextbtree.[ch]:
Fix some 'gint' bitfields that should have been
unsigned.
Diffstat (limited to 'gtk/gtkhandlebox.h')
-rw-r--r-- | gtk/gtkhandlebox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkhandlebox.h b/gtk/gtkhandlebox.h index 48176963fc..1f6ec3e292 100644 --- a/gtk/gtkhandlebox.h +++ b/gtk/gtkhandlebox.h @@ -67,7 +67,7 @@ struct _GtkHandleBox guint in_drag : 1; guint shrink_on_detach : 1; - gint snap_edge : 3; /* -1 == unset */ + signed int snap_edge : 3; /* -1 == unset */ /* Variables used during a drag */ |