Fix typos in an example (ok from owen)

2003-02-21  Tomas Ogren  <stric@ing.umu.se>

* docs/reference/gtk/tmpl/gtktreemodel.sgml: Fix typos in an example
(ok from owen)
This commit is contained in:
Tomas Ogren 2003-02-21 01:36:30 +00:00 committed by Tomas Ögren
parent 452de5d6a4
commit 728e06103b
6 changed files with 22 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-02-21 Tomas Ogren <stric@ing.umu.se>
* docs/reference/gtk/tmpl/gtktreemodel.sgml: Fix typos in an example
2003-02-20 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag):

View File

@ -1,3 +1,7 @@
2003-02-21 Tomas Ogren <stric@ing.umu.se>
* docs/reference/gtk/tmpl/gtktreemodel.sgml: Fix typos in an example
2003-02-20 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag):

View File

@ -1,3 +1,7 @@
2003-02-21 Tomas Ogren <stric@ing.umu.se>
* docs/reference/gtk/tmpl/gtktreemodel.sgml: Fix typos in an example
2003-02-20 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag):

View File

@ -1,3 +1,7 @@
2003-02-21 Tomas Ogren <stric@ing.umu.se>
* docs/reference/gtk/tmpl/gtktreemodel.sgml: Fix typos in an example
2003-02-20 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag):

View File

@ -1,3 +1,7 @@
2003-02-21 Tomas Ogren <stric@ing.umu.se>
* docs/reference/gtk/tmpl/gtktreemodel.sgml: Fix typos in an example
2003-02-20 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag):

View File

@ -160,7 +160,7 @@ enum
populate_model (list_store);
/* Get the first iter in the list */
valid = gtk_tree_model_get_iter_first (model, &amp;iter);
valid = gtk_tree_model_get_iter_first (list_store, &amp;iter);
while (valid)
{
@ -181,7 +181,7 @@ enum
g_free (str_data);
row_count ++;
valid = gtk_tree_model_iter_next (model, &amp;iter))
valid = gtk_tree_model_iter_next (list_store, &amp;iter);
}
}
</programlisting>