logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

Re: Going through a TreeStore: msg#00121

Subject: Re: Going through a TreeStore
This time it should be right :) :

my $iter=$store->get_iter_first;        # or starting point
while ($iter)
{       # do something
        $iter=( $store->iter_children($iter)||$store->iter_next($iter) );
        unless ($iter)
        {       $iter=$store->iter_next($_) while
                        $_=$store->iter_parent($iter);
        }
}

-- 
Quentin Sculo <squentin@xxxxxxx>


<Prev in Thread] Current Thread [Next in Thread>