diff options
author | Jasper St. Pierre <jstpierre@mecheye.net> | 2014-04-05 22:44:00 -0400 |
---|---|---|
committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2014-04-05 22:44:32 -0400 |
commit | ae7b154cf78701f2d11882483069ae1d7482c92e (patch) | |
tree | 92fc56b7130c8bfa30ca8f02fb05b0704ca081ae /gtk/gtkaccelgroup.h | |
parent | 2a26c39b299a24434595109640e31a77715c4ab1 (diff) | |
download | gtk+-ae7b154cf78701f2d11882483069ae1d7482c92e.tar.gz |
Make GtkAccelGroupEntry public again
Even though it was marked as internal, it seems gnome-terminal was
poking into the structure. It's unfortunately part of our ABI.
Diffstat (limited to 'gtk/gtkaccelgroup.h')
-rw-r--r-- | gtk/gtkaccelgroup.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk/gtkaccelgroup.h b/gtk/gtkaccelgroup.h index ffc2e7d706..7e5eaf1cb0 100644 --- a/gtk/gtkaccelgroup.h +++ b/gtk/gtkaccelgroup.h @@ -235,6 +235,13 @@ GtkAccelGroupEntry* gtk_accel_group_query (GtkAccelGroup *accel_group, GdkModifierType accel_mods, guint *n_entries); +struct _GtkAccelGroupEntry +{ + GtkAccelKey key; + GClosure *closure; + GQuark accel_path_quark; +}; + G_END_DECLS #endif /* __GTK_ACCEL_GROUP_H__ */ |