Stage 6 of clang compiler warning patches.

This commit is contained in:
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; return aclManager;
} }
- (NSException *) changeParticipationStatus: (NSString *) newPartStat
withDelegate: (iCalPerson *) delegate
alarm: (iCalAlarm *) alarm;
{
return nil;
}
- (id) init - (id) init
{ {
if ((self = [super init])) if ((self = [super init]))

View file

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

View file

@ -423,6 +423,38 @@ static SoSecurityManager *sm = nil;
return error; 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 *) initSubFolders
{ {
NSException *error; NSException *error;