Changeset 3467
- Timestamp:
- 03/05/08 15:05:02
- Files:
-
- trunk/libtinymail/tny-folder-monitor.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail/tny-folder-monitor.c
r3466 r3467 174 174 { 175 175 TnyList *list = TNY_LIST (tny_iterator_get_current (iter)); 176 177 if (check_duplicates) { 178 tny_list_remove_matches (list, uid_matcher, 179 (gpointer) tny_header_get_uid (header)); 180 } 176 const gchar *uid = tny_header_get_uid (header); 177 178 if (check_duplicates && uid) 179 tny_list_remove_matches (list, uid_matcher, (gpointer) uid); 181 180 182 181 tny_list_prepend (list, (GObject *) header);
