API Change Notice



GTK_TREE_VIEW_COLUMN_RESIZABLE has been removed in favor of a
gtk_tree_view_column_set_resizable.  I don't think this will effect too
many people, but for those who do use this feature, the fix is to
replace:

gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_RESIZABLE);

with:

gtk_tree_view_column_set_sizing (column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
gtk_tree_view_column_set_resizable (column, TRUE);

This is the last planned API change to GtkTreeView for 2.0.

Thanks,
-Jonathan



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]