diff options
author | Owen W. Taylor <otaylor@fishsoup.net> | 2013-02-14 17:11:28 -0500 |
---|---|---|
committer | Owen W. Taylor <otaylor@fishsoup.net> | 2013-02-14 17:11:28 -0500 |
commit | 96829e4f4032a388e4f181763c1e2cc23b09aac3 (patch) | |
tree | aa201afe64c60c9d522ef7b466cb49f5231e8a9f /gtk/gtkcontainerprivate.h | |
parent | eee365964abaa1534c22827e61fb29a6e9f7a6b8 (diff) | |
download | gtk+-wip/frame-synchronization.tar.gz |
GtkContainer: fix disconnection from frame clockwip/frame-synchronization
We need to disconnect the frame clock when we unrealize (at which
point the old clock is still alive) not in destroy(). Since there
is no common unrealize for containers, trigger this from GtkWidget.
Diffstat (limited to 'gtk/gtkcontainerprivate.h')
-rw-r--r-- | gtk/gtkcontainerprivate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkcontainerprivate.h b/gtk/gtkcontainerprivate.h index cd4bc5b2e9..dd989d2dc7 100644 --- a/gtk/gtkcontainerprivate.h +++ b/gtk/gtkcontainerprivate.h @@ -39,6 +39,7 @@ GList * _gtk_container_focus_sort (GtkContainer *container, GtkWidget *old_focus); gboolean _gtk_container_get_reallocate_redraws (GtkContainer *container); +void _gtk_container_stop_idle_sizer (GtkContainer *container); void _gtk_container_maybe_start_idle_sizer (GtkContainer *container); G_END_DECLS |