Monotone-Parent: c9072cd9f62ce341982a28f6b662d079949b101d

Monotone-Revision: 819868044eb268089e0c5cc2f35f71e9b157e69a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-11-22T19:54:53
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-11-22 19:54:53 +00:00
parent 7616ee92a1
commit 5f2befc9d7
1 changed files with 6 additions and 6 deletions

View File

@ -157,9 +157,9 @@
max = [self count];
list = talloc_zero(memCtx, struct LongArray_r);
list = talloc_zero (memCtx, struct LongArray_r);
list->cValues = max;
list->lpl = talloc_array(list, uint32_t, max);
list->lpl = talloc_array (list, uint32_t, max);
for (count = 0; count < max; count++)
{
number = [self objectAtIndex: count];
@ -208,9 +208,9 @@
max = [self count];
list = talloc_zero(memCtx, struct WStringArray_r);
list = talloc_zero (memCtx, struct WStringArray_r);
list->cValues = max;
list->lppszW = talloc_array(list, const char *, max);
list->lppszW = talloc_array (list, const char *, max);
for (count = 0; count < max; count++)
list->lppszW[count] = [[self objectAtIndex: count] asUnicodeInMemCtx: list->lppszW];
@ -258,9 +258,9 @@
max = [self count];
list = talloc_zero(memCtx,struct BinaryArray_r);
list = talloc_zero (memCtx,struct BinaryArray_r);
list->cValues = max;
list->lpbin = talloc_array(list, struct Binary_r, max);
list->lpbin = talloc_array (list, struct Binary_r, max);
for (count = 0; count < max; count++)
{