Fix typo in docs. This fixes #62942.

2001-10-27  Anders Carlsson  <andersca@gnu.org>

	* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
	This fixes #62942.
This commit is contained in:
Anders Carlsson 2001-10-27 01:23:22 +00:00 committed by Anders Carlsson
parent 89c00bf2c7
commit 6a78fcb59f
8 changed files with 22 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2001-10-27 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.
* gtk/gtkspinbutton.c (gtk_spin_button_new_with_range):
Clarify that we're returning a spin button in the _new function.
This fixes #54097.

View File

@ -1,5 +1,8 @@
2001-10-27 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.
* gtk/gtkspinbutton.c (gtk_spin_button_new_with_range):
Clarify that we're returning a spin button in the _new function.
This fixes #54097.

View File

@ -1,5 +1,8 @@
2001-10-27 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.
* gtk/gtkspinbutton.c (gtk_spin_button_new_with_range):
Clarify that we're returning a spin button in the _new function.
This fixes #54097.

View File

@ -1,5 +1,8 @@
2001-10-27 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.
* gtk/gtkspinbutton.c (gtk_spin_button_new_with_range):
Clarify that we're returning a spin button in the _new function.
This fixes #54097.

View File

@ -1,5 +1,8 @@
2001-10-27 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.
* gtk/gtkspinbutton.c (gtk_spin_button_new_with_range):
Clarify that we're returning a spin button in the _new function.
This fixes #54097.

View File

@ -1,5 +1,8 @@
2001-10-27 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.
* gtk/gtkspinbutton.c (gtk_spin_button_new_with_range):
Clarify that we're returning a spin button in the _new function.
This fixes #54097.

View File

@ -1,5 +1,8 @@
2001-10-27 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.
* gtk/gtkspinbutton.c (gtk_spin_button_new_with_range):
Clarify that we're returning a spin button in the _new function.
This fixes #54097.

View File

@ -959,7 +959,7 @@ gtk_tree_model_unref_node (GtkTreeModel *tree_model,
* each column number followed by a place to store the value being
* retrieved. The list is terminated by a -1. For example, to get a
* value from column 0 with type %G_TYPE_STRING, you would
* write: gtk_tree_model_set (model, iter, 0, &place_string_here, -1),
* write: gtk_tree_model_get (model, iter, 0, &place_string_here, -1),
* where place_string_here is a gchar* to be filled with the string.
* If appropriate, the returned values have to be freed or unreferenced.
*