Add a comment regarding cell renderers to the docs.

2004-10-01  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkcombobox.c (gtk_combo_box_set_model): Add a comment regarding
	cell renderers to the docs.
This commit is contained in:
Matthias Clasen 2004-10-01 19:00:47 +00:00 committed by Matthias Clasen
parent 03646f37b1
commit 49174ac1be
5 changed files with 18 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2004-10-01 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c (gtk_combo_box_set_model): Add a comment regarding
cell renderers to the docs.
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes):
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_clear_attributes):
Silently ignore info being NULL. This is unavoidable with the

View File

@ -1,5 +1,8 @@
2004-10-01 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c (gtk_combo_box_set_model): Add a comment regarding
cell renderers to the docs.
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes):
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_clear_attributes):
Silently ignore info being NULL. This is unavoidable with the

View File

@ -1,5 +1,8 @@
2004-10-01 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c (gtk_combo_box_set_model): Add a comment regarding
cell renderers to the docs.
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes):
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_clear_attributes):
Silently ignore info being NULL. This is unavoidable with the

View File

@ -1,5 +1,8 @@
2004-10-01 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c (gtk_combo_box_set_model): Add a comment regarding
cell renderers to the docs.
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes):
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_clear_attributes):
Silently ignore info being NULL. This is unavoidable with the

View File

@ -4346,9 +4346,12 @@ gtk_combo_box_set_active_iter (GtkComboBox *combo_box,
* @combo_box: A #GtkComboBox.
* @model: A #GtkTreeModel.
*
* Sets the model used by @combo_box to be @model. Will unset a
* previously set model (if applicable).
* If model is %NULL, then it will unset the model.
* Sets the model used by @combo_box to be @model. Will unset a previously set
* model (if applicable). If model is %NULL, then it will unset the model.
*
* Note that this function does not clear the cell renderers, you have to
* call gtk_combo_box_cell_layout_clear() yourself if you need to set up
* different cell renderers for the new model.
*
* Since: 2.4
*/