mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-21 14:43:31 +00:00
Monotone-Parent: 2fdf0ead0781ef2362dd389811d5db44ca4cc84a
Monotone-Revision: c91eef7edcfd08d414664c25a590b6268a7e58e2 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2009-11-29T04:19:32 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -385,6 +385,24 @@ static NSMutableCharacterSet *urlStartChars = nil;
|
||||
}
|
||||
#endif
|
||||
|
||||
- (int) timeValue
|
||||
{
|
||||
int i, time;
|
||||
|
||||
if ([self length] > 0)
|
||||
{
|
||||
i = [self rangeOfString: @":"].location;
|
||||
if (i == NSNotFound)
|
||||
time = [self intValue];
|
||||
else
|
||||
time = [[self substringToIndex: i] intValue];
|
||||
}
|
||||
else
|
||||
time = -1;
|
||||
|
||||
return time;
|
||||
}
|
||||
|
||||
static NSMutableCharacterSet *safeLDIFChars = nil;
|
||||
static NSMutableCharacterSet *safeLDIFStartChars = nil;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user