diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-11-27 15:40:45 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-11-27 15:40:45 +0900 |
commit | cbc4416c8e161d649404a6e6d1e979e551847375 (patch) | |
tree | f5304b48f82a44cc802842a00be0163330a418a7 /gtk/gtkcellareacontext.h | |
parent | e21c224f2819e6ffb32ea4cf85745e0dc5b99d57 (diff) | |
download | gtk+-cbc4416c8e161d649404a6e6d1e979e551847375.tar.gz |
Removing the height_for_width vfuncs on GtkCellAreaContextClass which I forgot to remove.
Diffstat (limited to 'gtk/gtkcellareacontext.h')
-rw-r--r-- | gtk/gtkcellareacontext.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gtk/gtkcellareacontext.h b/gtk/gtkcellareacontext.h index 0796908caf..f9681e7069 100644 --- a/gtk/gtkcellareacontext.h +++ b/gtk/gtkcellareacontext.h @@ -55,22 +55,14 @@ struct _GtkCellAreaContextClass /* Subclasses can use this to flush their alignments/allocations */ void (* flush_preferred_width) (GtkCellAreaContext *context); - void (* flush_preferred_height_for_width) (GtkCellAreaContext *context, - gint width); void (* flush_preferred_height) (GtkCellAreaContext *context); - void (* flush_preferred_width_for_height) (GtkCellAreaContext *context, - gint height); void (* flush_allocation) (GtkCellAreaContext *context); /* These must be invoked after a series of requests before consulting * the context values, implementors use this to push the overall * requests while acconting for any internal alignments */ void (* sum_preferred_width) (GtkCellAreaContext *context); - void (* sum_preferred_height_for_width) (GtkCellAreaContext *context, - gint width); void (* sum_preferred_height) (GtkCellAreaContext *context); - void (* sum_preferred_width_for_height) (GtkCellAreaContext *context, - gint height); /* Store an allocation value for a GtkCellArea contextual to a range of * treemodel rows */ |