Monotone-Parent: a830e73fbed57c6ef30ede64ea5bfa6d85af8f74

Monotone-Revision: ade57d95f9e3d9e8015757ea30d104d416c32d67

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-02-03T22:09:41
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-02-03 22:09:41 +00:00
parent b667780957
commit 952404d05f
3 changed files with 17 additions and 1 deletions
+11
View File
@@ -180,4 +180,15 @@ MAPIStoreMappingInitDictionary (NSMutableDictionary *mapping)
return rc;
}
- (void) unregisterURLWithID: (uint64_t) idNbr
{
NSNumber *idKey;
NSString *urlString;
idKey = [NSNumber numberWithUnsignedLongLong: idNbr];
urlString = [mapping objectForKey: idKey];
[reverseMapping removeObjectForKey: urlString];
[mapping removeObjectForKey: idKey];
}
@end