imagehandlingutilities/thumbnailmanager/thumbnailserver/inc/thumbnailserver.h
changeset 36 c5df59b4ae2d
parent 30 b67379558a75
equal deleted inserted replaced
30:b67379558a75 36:c5df59b4ae2d
    61     // const pointer to a non-const object
    61     // const pointer to a non-const object
    62     V* const * item = iter.NextValue();
    62     V* const * item = iter.NextValue();
    63 
    63 
    64     while ( item )
    64     while ( item )
    65         {
    65         {
    66         delete * item;
    66         delete *item;
    67         item = iter.NextValue();
    67         item = iter.NextValue();
    68         }
    68         }
    69     aHashMap.Close();
    69     aHashMap.Close();
    70     }
    70     }
    71 
    71