chore(addressbook): remove UIxContactView.wox and UIxListView.wox

This commit is contained in:
Francis Lachapelle
2022-02-02 10:59:53 -05:00
parent 4f255ac9d5
commit e54631becf
7 changed files with 7 additions and 206 deletions
-56
View File
@@ -30,62 +30,6 @@
@implementation UIxListView
- (NSString *) listName
{
return [list fn];
}
- (BOOL) hasNickname
{
return [list nickname] != nil;
}
- (NSString *) listNickname
{
return [list nickname];
}
- (BOOL) hasDescription
{
return [list description] != nil;
}
- (NSString *) listDescription
{
return [list description];
}
- (NSArray *) components
{
return [list cardReferences];
}
- (BOOL) itemHasEmail
{
return [[item email] length] > 0;
}
- (NSString *) itemHref
{
return [NSString stringWithFormat: @"mailto:%@",
[item email]];
}
- (NSString *) itemOnclick
{
return [NSString stringWithFormat: @"return openMailTo('%@ <%@>');",
[item fn], [item email]];
}
- (NSString *) itemName
{
return [item fn];
}
- (NSString *) itemEmail
{
return [item email];
}
- (void) checkListReferences
{
NSMutableArray *invalid;