Changeset 3311
- Timestamp:
- 01/29/08 16:57:52
- Files:
-
- trunk/libtinymail/tny-simple-list-iterator.c (modified) (1 diff)
- trunk/libtinymailui-gtk/tny-gtk-account-list-model-iterator.c (modified) (1 diff)
- trunk/libtinymailui-gtk/tny-gtk-attach-list-model-iterator.c (modified) (1 diff)
- trunk/libtinymailui-gtk/tny-gtk-header-list-iterator.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail/tny-simple-list-iterator.c
r3310 r3311 39 39 40 40 g_mutex_lock (lpriv->iterator_lock); 41 if (self->model) 42 g_object_unref (self->model); 41 43 self->model = (TnySimpleList *) g_object_ref (self->model); 42 44 self->current = lpriv->first; trunk/libtinymailui-gtk/tny-gtk-account-list-model-iterator.c
r3309 r3311 32 32 _tny_gtk_account_list_model_iterator_set_model (TnyGtkAccountListModelIterator *self, TnyGtkAccountListModel *model) 33 33 { 34 if (self->model) 35 g_object_unref (self->model); 34 36 self->model = (TnyGtkAccountListModel *) g_object_ref (model); 35 37 self->current = model->first; trunk/libtinymailui-gtk/tny-gtk-attach-list-model-iterator.c
r3309 r3311 33 33 _tny_gtk_attach_list_model_iterator_set_model (TnyGtkAttachListModelIterator *self, TnyGtkAttachListModel *model) 34 34 { 35 if (self->model) 36 g_object_unref (self->model); 35 37 self->model = (TnyGtkAttachListModel *) g_object_ref (model); 36 38 self->current = model->first; trunk/libtinymailui-gtk/tny-gtk-header-list-iterator.c
r3309 r3311 34 34 { 35 35 36 if (self->model) 37 g_object_unref (self->model); 36 38 self->model = (TnyGtkHeaderListModel *) g_object_ref (model); 37 39
