On 3/5/07, KLessou <[EMAIL PROTECTED]> wrote:
>     store.Append (out iter);
>     store.SetValue (iter, 0, imagePreview);
>     store.SetValue (iter, 1, description);

On a side note, this can be changed to (the more readable):

    iter = store.AppendValues(imagePreview, description);

or even

    store.AppendValues(imagePreview, description);

if you don't need the TreeIter (you'd get a warning about assigning
and never reading, otherwise).

-- 
Felipe.
_______________________________________________
Gtk-sharp-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to