Changeset 1766
- Timestamp:
- 02/19/07 18:57:16 (22 months ago)
- Files:
-
- 1 modified
-
plugins/kdepim/src/kaddrbook.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/kdepim/src/kaddrbook.cpp
r1764 r1766 173 173 // needs to be reported 174 174 osync_change_set_hash(change, hash.data()); 175 175 176 OSyncChangeType changetype = osync_hashtable_get_changetype(hashtable, uid.local8Bit(), hash.data()); 177 osync_change_set_changetype(change, changetype); 176 178 if (OSYNC_CHANGE_TYPE_UNMODIFIED != changetype) { 177 179 osync_context_report_change(ctx, change); … … 180 182 } 181 183 184 // FIXME: the osync_hashtable_get_deleted reports _EVERYTHING_ 185 // ... so really everything got deleted... i wonder how this worked for the file-sync plugin. 186 /* 182 187 int i; 183 188 char **uids = osync_hashtable_get_deleted(hashtable); 184 189 for (i=0; uids[i]; i++) { 190 osync_trace(TRACE_INTERNAL, "going to delete entry with uid: %s", uids[i]); 185 191 OSyncChange *change = osync_change_new(&error); 186 192 if (!change) { … … 215 221 } 216 222 g_free(uids); 223 */ 217 224 218 225 osync_trace(TRACE_EXIT, "%s", __func__);
