From be72456a9aa7d06c8a7151b1bc7a0fa4ea43fa57 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Wed, 14 May 2014 09:56:10 -0400 Subject: [PATCH] Renamed folder cache creation method --- OpenChange/MAPIStoreUserContext.m | 2 +- SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.h | 2 +- SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.m | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenChange/MAPIStoreUserContext.m b/OpenChange/MAPIStoreUserContext.m index 2afb398f2..d0284eb6f 100644 --- a/OpenChange/MAPIStoreUserContext.m +++ b/OpenChange/MAPIStoreUserContext.m @@ -329,7 +329,7 @@ static NSMapTable *contextsTable = nil; tableName]]) { queries = [channel specialQueries]; - query = [queries createOpenChangeFSTableWithName: tableName]; + query = [queries createSOGoCacheGCSFolderTableWithName: tableName]; if ([channel evaluateExpressionX: query]) [NSException raise: @"MAPIStoreIOException" format: @"could not create special table '%@'", tableName]; diff --git a/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.h b/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.h index d26c39e42..0f8e9c58a 100644 --- a/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.h +++ b/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.h @@ -25,7 +25,7 @@ @interface GCSSpecialQueries (SOGoCacheObject) -- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName; +- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName; @end diff --git a/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.m b/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.m index ea6696d8d..b0e9eea52 100644 --- a/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.m +++ b/SoObjects/SOGo/GCSSpecialQueries+SOGoCacheObject.m @@ -35,7 +35,7 @@ /* FIXME: c_parent_path should be indexed */ -- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName +- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName { [self subclassResponsibility: _cmd]; @@ -46,7 +46,7 @@ @implementation GCSPostgreSQLSpecialQueries (SOGoObjectCache) -- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName +- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName { static NSString *sqlFolderFormat = (@"CREATE TABLE %@ (" @@ -66,7 +66,7 @@ @implementation GCSMySQLSpecialQueries (SOGoObjectCache) -- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName +- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName { static NSString *sqlFolderFormat = (@"CREATE TABLE %@ (" @@ -86,7 +86,7 @@ @implementation GCSOracleSpecialQueries (SOGoObjectCache) -- (NSString *) createOpenChangeFSTableWithName: (NSString *) tableName +- (NSString *) createSOGoCacheGCSFolderTableWithName: (NSString *) tableName { static NSString *sqlFolderFormat = (@"CREATE TABLE %@ ("