diff -r 48780e181b38 -r 578be2adaf3e Symbian3/PDK/Source/GUID-DE9E76F8-AE17-5962-A2BB-5006C6AB5C82.dita --- a/Symbian3/PDK/Source/GUID-DE9E76F8-AE17-5962-A2BB-5006C6AB5C82.dita Tue Jul 20 12:00:49 2010 +0100 +++ b/Symbian3/PDK/Source/GUID-DE9E76F8-AE17-5962-A2BB-5006C6AB5C82.dita Fri Aug 13 16:47:46 2010 +0100 @@ -1,26 +1,26 @@ - - - - - -How -to expand the arrayAn array can be expanded by using the ExpandL() function. -

ExpandL() constructs a new element at position 1 within -a CArrayFixFlat<class T> array. In this example, the new -element inserted at position 1 is a TElement type object, -constructed using the TElement default constructor. -It is essential that a default constructor exists before using this function.

-CArrayFixFlat<TElement>* fixflat; -fixflat = new (ELeave) CArrayFixFlat<TElement>(8); -... -fixflat->ExpandL(1); -

Use ExtendL() to append the newly constructed TElement at -the end of the fixflat array.

-fixflat->ExtendL(); + + + + + +How +to expand the arrayAn array can be expanded by using the ExpandL() function. +

ExpandL() constructs a new element at position 1 within +a CArrayFixFlat<class T> array. In this example, the new +element inserted at position 1 is a TElement type object, +constructed using the TElement default constructor. +It is essential that a default constructor exists before using this function.

+CArrayFixFlat<TElement>* fixflat; +fixflat = new (ELeave) CArrayFixFlat<TElement>(8); +... +fixflat->ExpandL(1); +

Use ExtendL() to append the newly constructed TElement at +the end of the fixflat array.

+fixflat->ExtendL();
\ No newline at end of file