]> Pileus Git - ~andy/gtk/commitdiff
Fix typo in docs. This fixes #62942.
authorAnders Carlsson <andersca@gnu.org>
Sat, 27 Oct 2001 01:23:22 +0000 (01:23 +0000)
committerAnders Carlsson <andersca@src.gnome.org>
Sat, 27 Oct 2001 01:23:22 +0000 (01:23 +0000)
2001-10-27  Anders Carlsson  <andersca@gnu.org>

* gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
This fixes #62942.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtktreemodel.c

index 891879062515d2501530e894b8e883a462185e1c..0637f13123e2346a9727ca5b5bb3e78d2f438f32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 891879062515d2501530e894b8e883a462185e1c..0637f13123e2346a9727ca5b5bb3e78d2f438f32 100644 (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.
index 891879062515d2501530e894b8e883a462185e1c..0637f13123e2346a9727ca5b5bb3e78d2f438f32 100644 (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.
index 891879062515d2501530e894b8e883a462185e1c..0637f13123e2346a9727ca5b5bb3e78d2f438f32 100644 (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.
index 891879062515d2501530e894b8e883a462185e1c..0637f13123e2346a9727ca5b5bb3e78d2f438f32 100644 (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.
index 891879062515d2501530e894b8e883a462185e1c..0637f13123e2346a9727ca5b5bb3e78d2f438f32 100644 (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.
index 891879062515d2501530e894b8e883a462185e1c..0637f13123e2346a9727ca5b5bb3e78d2f438f32 100644 (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.
index e9c3d701127c2bc1e1ac8bc19f5b577a6fa96db3..2ec18828580914c1b6f207950ebd14cfc35e154e 100644 (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.
  *