diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-08-15 15:46:24 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-08-15 15:46:24 +0000 |
commit | 398df120e86d841a7b1c54e6ab0603c37671210d (patch) | |
tree | 9ee610a425c6c0f3b5c59cdbe8413e4e93c49793 /gtk/gtkliststore.c | |
parent | 4d713a94c5458d00b6518c00cb8d4da8c60ee26e (diff) | |
download | gtk+-398df120e86d841a7b1c54e6ab0603c37671210d.tar.gz |
Fix a typo in the docs. (#349501, Carlos GUSLiBu)
2006-08-15 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkliststore.c (gtk_list_store_insert_with_values):
Fix a typo in the docs. (#349501, Carlos GUSLiBu)
Diffstat (limited to 'gtk/gtkliststore.c')
-rw-r--r-- | gtk/gtkliststore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkliststore.c b/gtk/gtkliststore.c index 84175b7c3e..97f054ba3f 100644 --- a/gtk/gtkliststore.c +++ b/gtk/gtkliststore.c @@ -1789,7 +1789,7 @@ gtk_list_store_has_default_sort_func (GtkTreeSortable *sortable) * has the same effect as calling * <informalexample><programlisting> * gtk_list_store_insert (list_store, iter, position); - * gtk_list_store_set (list_store_iter, ...); + * gtk_list_store_set (list_store, iter, ...); * </programlisting></informalexample> * with the difference that the former will only emit a row_inserted signal, * while the latter will emit row_inserted, row_changed and, if the list store |