diff options
author | Benjamin Otte <otte@redhat.com> | 2015-03-24 04:45:38 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2015-10-28 19:44:27 +0100 |
commit | ab2d236d3dafb93ae8d25e415d6e0b9c8a55babc (patch) | |
tree | bdfc072dc89aba8505194776a2bb093068b977d6 /gtk/gtksizegroup-private.h | |
parent | 5dd2087d19e93e0f99bd7e43bcee42ef3bc833e8 (diff) | |
download | gtk+-ab2d236d3dafb93ae8d25e415d6e0b9c8a55babc.tar.gz |
sizegroup: Remove GtkQueueResizeFlags
They were only used with geometry widgets.
Diffstat (limited to 'gtk/gtksizegroup-private.h')
-rw-r--r-- | gtk/gtksizegroup-private.h | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/gtk/gtksizegroup-private.h b/gtk/gtksizegroup-private.h index 11b6fa8ecd..6950844913 100644 --- a/gtk/gtksizegroup-private.h +++ b/gtk/gtksizegroup-private.h @@ -23,26 +23,9 @@ G_BEGIN_DECLS -/* - * GtkQueueResizeFlags: - * @GTK_QUEUE_RESIZE_INVALIDATE_ONLY: invalidate all cached sizes - * as we would normally do when a widget is queued for resize, - * but don’t actually add the toplevel resize container to the - * resize queue. Useful if we want to change the size of a widget - * see how that would affect the overall layout, then restore - * the old size. - * - * Flags that affect the operation of queueing a widget for resize. - */ -typedef enum -{ - GTK_QUEUE_RESIZE_INVALIDATE_ONLY = 1 << 0 -} GtkQueueResizeFlags; - GHashTable * _gtk_size_group_get_widget_peers (GtkWidget *for_widget, GtkOrientation orientation); -void _gtk_size_group_queue_resize (GtkWidget *widget, - GtkQueueResizeFlags flags); +void _gtk_size_group_queue_resize (GtkWidget *widget); G_END_DECLS |