Seal GtkMenuShell

svn path=/trunk/; revision=20609
This commit is contained in:
Tim Janik
2008-06-20 11:08:39 +00:00
parent 2fddfb496e
commit f1f95ef71d

View File

@ -52,20 +52,20 @@ typedef struct _GtkMenuShellClass GtkMenuShellClass;
struct _GtkMenuShell struct _GtkMenuShell
{ {
GtkContainer container; GtkContainer container;
GList *children;
GtkWidget *active_menu_item;
GtkWidget *parent_menu_shell;
guint button;
guint32 activate_time;
guint active : 1; GList *GSEAL (children);
guint have_grab : 1; GtkWidget *GSEAL (active_menu_item);
guint have_xgrab : 1; GtkWidget *GSEAL (parent_menu_shell);
guint ignore_leave : 1; /* unused */
guint menu_flag : 1; /* unused */ guint GSEAL (button);
guint ignore_enter : 1; guint32 GSEAL (activate_time);
guint GSEAL (active : 1);
guint GSEAL (have_grab : 1);
guint GSEAL (have_xgrab : 1);
guint GSEAL (unused1);
guint GSEAL (unused2);
guint GSEAL (ignore_enter : 1);
}; };
struct _GtkMenuShellClass struct _GtkMenuShellClass