mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-24 23:52:43 +00:00
Monotone-Parent: 64ba2e93f125a52eecebddb59943e772948d3477
Monotone-Revision: 8ec67206fe2e60d10c9dd420d14aeb136a46afc8 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-06-06T23:59:31 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -942,7 +942,7 @@ sogo_pocop_open_embedded_message (void *attachment_object,
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int sogo_pocop_get_available_table_properties(void *table_object, struct SPropTagArray *properties)
|
||||
static int sogo_pocop_get_available_table_properties(void *table_object, struct SPropTagArray **propertiesP)
|
||||
{
|
||||
NSAutoreleasePool *pool;
|
||||
MAPIStoreTable *table;
|
||||
@@ -954,7 +954,7 @@ static int sogo_pocop_get_available_table_properties(void *table_object, struct
|
||||
if (table)
|
||||
{
|
||||
pool = [NSAutoreleasePool new];
|
||||
rc = [table getAvailableProperties: properties];
|
||||
rc = [table getAvailableProperties: propertiesP];
|
||||
[pool release];
|
||||
}
|
||||
else
|
||||
@@ -1073,7 +1073,7 @@ sogo_pocop_get_table_row (void *table_object, enum table_query_type query_type,
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int sogo_pocop_get_available_properties(void *object, struct SPropTagArray *properties)
|
||||
static int sogo_pocop_get_available_properties(void *object, struct SPropTagArray **propertiesP)
|
||||
{
|
||||
NSAutoreleasePool *pool;
|
||||
MAPIStoreObject *propObject;
|
||||
@@ -1085,7 +1085,7 @@ static int sogo_pocop_get_available_properties(void *object, struct SPropTagArra
|
||||
if (propObject)
|
||||
{
|
||||
pool = [NSAutoreleasePool new];
|
||||
rc = [propObject getAvailableProperties: properties];
|
||||
rc = [propObject getAvailableProperties: propertiesP];
|
||||
[pool release];
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user