diff options
author | Carlos Garnacho <carlos@imendio.com> | 2008-06-21 14:56:07 +0000 |
---|---|---|
committer | Carlos Garnacho <carlosg@src.gnome.org> | 2008-06-21 14:56:07 +0000 |
commit | 56bbbbf5539df394516f5a88fcda17344d90aef8 (patch) | |
tree | 7fdf40161cbf599640622e72a7dd6f2643af16ec /gtk/gtkmenushell.h | |
parent | a1362779eea72182cb6cddd15e147125ae51ce02 (diff) | |
download | gtk+-56bbbbf5539df394516f5a88fcda17344d90aef8.tar.gz |
Bug 539466 – GtkMenuShell API/ABI break in trunk.
2008-06-21 Carlos Garnacho <carlos@imendio.com>
Bug 539466 – GtkMenuShell API/ABI break in trunk.
* gtk/gtkmenushell.h: Fix API/ABI break, two guint fields had
different name and packing width.
svn path=/trunk/; revision=20666
Diffstat (limited to 'gtk/gtkmenushell.h')
-rw-r--r-- | gtk/gtkmenushell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkmenushell.h b/gtk/gtkmenushell.h index ffb294fe62..b38051e47a 100644 --- a/gtk/gtkmenushell.h +++ b/gtk/gtkmenushell.h @@ -63,8 +63,8 @@ struct _GtkMenuShell guint GSEAL (active) : 1; guint GSEAL (have_grab) : 1; guint GSEAL (have_xgrab) : 1; - guint GSEAL (unused1); - guint GSEAL (unused2); + guint GSEAL (ignore_leave) : 1; /* unused */ + guint GSEAL (menu_flag) : 1; /* unused */ guint GSEAL (ignore_enter) : 1; }; |