equal
deleted
inserted
replaced
53 //set container properties |
53 //set container properties |
54 container->iAttribute = aAttribute; |
54 container->iAttribute = aAttribute; |
55 container->iAttributeType = aAttributeTypes; |
55 container->iAttributeType = aAttributeTypes; |
56 |
56 |
57 //append to list |
57 //append to list |
58 RArray::AppendL( container); |
58 RArray<AttributeContainerHelper::TContainer*>::AppendL( container); |
59 |
59 |
60 //remove from cleanup |
60 //remove from cleanup |
61 CleanupStack::Pop( 2, aAttribute); |
61 CleanupStack::Pop( 2, aAttribute); |
62 } |
62 } |
63 |
63 |
73 AttributeContainerHelper::TContainer * container = operator[]( i); |
73 AttributeContainerHelper::TContainer * container = operator[]( i); |
74 delete container->iAttribute; |
74 delete container->iAttribute; |
75 delete container; |
75 delete container; |
76 } |
76 } |
77 |
77 |
78 RArray::Close(); |
78 RArray<AttributeContainerHelper::TContainer*>::Close(); |
79 } |
79 } |
80 |
80 |
81 |
81 |
82 |
82 |
83 // ----------------------------------------------------------------------------- |
83 // ----------------------------------------------------------------------------- |