diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-11-26 12:09:06 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2011-01-04 23:37:09 +0900 |
commit | 6ab29f5fd820fd2105ceaed72b55765aaa70bd0c (patch) | |
tree | 0b82d5aeeca6982985976c9546d8d4a42ce0bae5 /gtk/gtkcellview.h | |
parent | 238bf5cbaad209416eb99d0e3b9c70a1d2343535 (diff) | |
download | gtk+-6ab29f5fd820fd2105ceaed72b55765aaa70bd0c.tar.gz |
Removing apis from GtkCellView
APIS: gtk_cell_view_get_desired_width_of_row &
gtk_cell_view_get_desired_height_for_width_of_row were introduced in
3.0 only for use from GtkComboBox and now the refactored cellview
does this transparently and just requests the right thing through
GtkWidget apis.
Diffstat (limited to 'gtk/gtkcellview.h')
-rw-r--r-- | gtk/gtkcellview.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gtk/gtkcellview.h b/gtk/gtkcellview.h index c3aa8a6fec..ce8e267a77 100644 --- a/gtk/gtkcellview.h +++ b/gtk/gtkcellview.h @@ -93,18 +93,6 @@ gboolean gtk_cell_view_get_size_of_row (GtkCellView *cell_v GtkRequisition *requisition); #endif - -/* XXX These 2 are going away... */ -void gtk_cell_view_get_desired_width_of_row(GtkCellView *cell_view, - GtkTreePath *path, - gint *minimum_size, - gint *natural_size); -void gtk_cell_view_get_desired_height_for_width_of_row(GtkCellView *cell_view, - GtkTreePath *path, - gint avail_size, - gint *minimum_size, - gint *natural_size); - G_END_DECLS #endif /* __GTK_CELL_VIEW_H__ */ |