(feat) print event/task description in list view (#2881)

This commit is contained in:
Ludovic Marcotte
2015-05-13 13:12:15 -04:00
parent 0ea0a77666
commit dc48e05dd3
6 changed files with 27 additions and 5 deletions
+6
View File
@@ -177,6 +177,12 @@
[row setObject: [categories componentsJoinedByString: @","]
forKey: @"c_category"];
/* handle description */
if ([self comment])
[row setObject: [self comment] forKey: @"c_description"];
else
[row setObject: [NSNull null] forKey: @"c_description"];
return row;
}