imagehandlingutilities/thumbnailmanager/thumbnailserver/inc/thumbnailserver.h
changeset 33 221be23823c5
parent 30 b67379558a75
equal deleted inserted replaced
31:d429f823a6b7 33:221be23823c5
    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