Monotone-Parent: 396c6e864095eef33b37851b95eab331da4f4a20

Monotone-Revision: 2fee91accf9f3901e90b072dfcad7295be80e62d

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-11-18T22:14:48
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2010-11-18 22:14:48 +00:00
parent 01a7a10e49
commit 95564b9975
3 changed files with 5 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2010-11-18 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* NGVCard.m (-setVName, vName): removed useless and non-standard
methods.
2010-11-08 Francis Lachapelle <flachapelle@inverse.ca>
* NSString+NGCards.m (-vCardSubvaluesWithSeparator:): now returns

View File

@ -84,8 +84,6 @@ typedef enum
- (void) setVClass: (NSString *) _s;
- (NSString *) vClass;
- (void) setVName: (NSString *) _s;
- (NSString *) vName;
- (void) setProdID: (NSString *) _s;
- (NSString *) prodID;
- (void) setProfile: (NSString *) _s;

View File

@ -146,16 +146,6 @@
return [[self uniqueChildWithTag: @"class"] value: 0];
}
- (void) setVName: (NSString *) _vname
{
[[self uniqueChildWithTag: @"vname"] setValue: 0 to: _vname];
}
- (NSString *) vName
{
return [[self uniqueChildWithTag: @"vname"] value: 0];
}
- (void) setProdID: (NSString *) _value
{
[[self uniqueChildWithTag: @"prodid"] setValue: 0 to: _value];