equal
deleted
inserted
replaced
60 //set container properties |
60 //set container properties |
61 container->iAttribute = aAttribute; |
61 container->iAttribute = aAttribute; |
62 container->iAttributeType = aAttributeTypes; |
62 container->iAttributeType = aAttributeTypes; |
63 |
63 |
64 //append to list |
64 //append to list |
65 RArray::AppendL( container); |
65 RArray<AttributeContainerHelper::TContainer*>::AppendL( container); |
66 |
66 |
67 //remove from cleanup |
67 //remove from cleanup |
68 CleanupStack::Pop( 2, aAttribute); |
68 CleanupStack::Pop( 2, aAttribute); |
69 } |
69 } |
70 |
70 |
80 AttributeContainerHelper::TContainer * container = operator[]( i); |
80 AttributeContainerHelper::TContainer * container = operator[]( i); |
81 delete container->iAttribute; |
81 delete container->iAttribute; |
82 delete container; |
82 delete container; |
83 } |
83 } |
84 |
84 |
85 RArray::Close(); |
85 RArray<AttributeContainerHelper::TContainer*>::Close(); |
86 } |
86 } |
87 |
87 |
88 |
88 |
89 |
89 |
90 // ----------------------------------------------------------------------------- |
90 // ----------------------------------------------------------------------------- |