On Wed, Nov 4, 2009 at 12:42 PM, dhk wrote:
> In the gtk-demo program has a block as follows in the Tree View/Tree
> Store example. This doesn't initialize the the child iter before using
> it in the gtk_tree_store_append(), but the stamp is valid.
Iterators are not valid until they have been to
Claudio Saavedra wrote:
> El mar, 03-11-2009 a las 16:53 -0500, dhk escribió:
>> I have a program that declares a number of GtkTreeIter's. Recently the
>> prepending to the parent iter broke. I found out that, in some cases,
>> the stamp to the iter's are negative just after the iter is declared.
El mar, 03-11-2009 a las 16:53 -0500, dhk escribió:
> I have a program that declares a number of GtkTreeIter's. Recently the
> prepending to the parent iter broke. I found out that, in some cases,
> the stamp to the iter's are negative just after the iter is declared.
> This means the iter is inv
I have a program that declares a number of GtkTreeIter's. Recently the
prepending to the parent iter broke. I found out that, in some cases,
the stamp to the iter's are negative just after the iter is declared.
This means the iter is invalid. The following test program does the
same thing.
Why