Merge pull request #113 from ethoms/clang-warnings-stage6

Stage 6 of clang compiler warning patches.
This commit is contained in:
extrafu 2015-11-05 09:34:24 -05:00
commit 9fb69a8095
2 changed files with 9 additions and 1 deletions

View file

@ -140,6 +140,14 @@
return aclManager; return aclManager;
} }
- (NSException *) changeParticipationStatus: (NSString *) newPartStat
withDelegate: (iCalPerson *) delegate
alarm: (iCalAlarm *) alarm
{
// Required for protocol <SOGoComponentOccurence>
return nil;
}
- (id) init - (id) init
{ {
if ((self = [super init])) if ((self = [super init]))

View file

@ -433,7 +433,7 @@ static SoSecurityManager *sm = nil;
error = [self appendPersonalSources]; error = [self appendPersonalSources];
if (!error) if (!error)
if ([self respondsToSelector:@selector(appendCollectedSources)]) if ([self respondsToSelector:@selector(appendCollectedSources)])
error = [self appendCollectedSources]; error = [self performSelector:@selector(appendCollectedSources)];
if (!error) if (!error)
error = [self appendSystemSources]; // TODO : Not really a testcase, see function error = [self appendSystemSources]; // TODO : Not really a testcase, see function
if (error) if (error)