Stage 6 of clang compiler warning patches.

pull/113/head
Euan Thoms 2015-11-04 05:37:39 +08:00
parent e5c71a4179
commit 0b4c355c2c
3 changed files with 40 additions and 0 deletions

View File

@ -140,6 +140,13 @@
return aclManager;
}
- (NSException *) changeParticipationStatus: (NSString *) newPartStat
withDelegate: (iCalPerson *) delegate
alarm: (iCalAlarm *) alarm;
{
return nil;
}
- (id) init
{
if ((self = [super init]))

View File

@ -45,6 +45,7 @@
- (NSException *) appendPersonalSources;
- (void) removeSubFolder: (NSString *) subfolderName;
- (NSException *) appendCollectedSources;
- (void) setBaseOCSPath: (NSString *) newOCSPath;

View File

@ -423,6 +423,38 @@ static SoSecurityManager *sm = nil;
return error;
}
- (NSException *) appendCollectedSources
{
GCSChannelManager *cm;
EOAdaptorChannel *fc;
NSURL *folderLocation;
NSString *sql, *gcsFolderType;
NSException *error;
cm = [GCSChannelManager defaultChannelManager];
folderLocation = [[GCSFolderManager defaultFolderManager] folderInfoLocation];
fc = [cm acquireOpenChannelForURL: folderLocation];
if ([fc isOpen])
{
gcsFolderType = [[self class] gcsFolderType];
sql = [NSString stringWithFormat: (@"SELECT c_path4 FROM %@"
@" WHERE c_path2 = '%@'"
@" AND c_folder_type = '%@'"),
[folderLocation gcsTableName], owner, gcsFolderType];
error = [self fetchSpecialFolders: sql withChannel: fc andFolderType: SOGoCollectedFolder];
[cm releaseChannel: fc];
}
else
error = [NSException exceptionWithName: @"SOGoDBException"
reason: @"database connection could not be open"
userInfo: nil];
return error;
}
- (NSException *) initSubFolders
{
NSException *error;