Fix stack vs heap confusion. (#168690, Torsten Schoenfeld)

2005-02-27  Matthias Clasen  <mclasen@redhat.com>

	* gtk/tmpl/gtktreemodel.sgml: Fix stack vs heap
	confusion.  (#168690, Torsten Schoenfeld)
This commit is contained in:
Matthias Clasen 2005-02-28 04:51:56 +00:00 committed by Matthias Clasen
parent 2c24a9f374
commit 6294736800
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-02-27 Matthias Clasen <mclasen@redhat.com>
* gtk/tmpl/gtktreemodel.sgml: Fix stack vs heap
confusion. (#168690, Torsten Schoenfeld)
2005-02-15 Matthias Clasen <mclasen@redhat.com>
* gtk/tmpl/gtkcalendar.sgml: Add some more

View File

@ -65,7 +65,7 @@ generic pointers. These are filled in by the model in a model-specific
way. One can convert a path to an iterator by calling
gtk_tree_model_get_iter(). These iterators are the primary way of
accessing a model and are similar to the iterators used by
#GtkTextBuffer. They are generally statically allocated on the heap and
#GtkTextBuffer. They are generally statically allocated on the stack and
only used for a short time. The model interface defines a set of
operations using them for navigating the model.
</para>