private Color ColorForCell(HeapCell aCell)
        {
            Color fillColour = HeapCellRendererColour.ColourByCellType(aCell);

            //
            if (aCell.Type == HeapCell.TType.EAllocated && !aCell.IsUnknown)
            {
                string hash = aCell.Symbol.ObjectWithoutSection;
                //
                HeapCellFilterTriplet val = ColourHashes[hash];
                System.Diagnostics.Debug.Assert(val != null);
                fillColour = val.Color;
            }
            //
            return(fillColour);
        }
 public TripletDictionaryEntry(string aKey, HeapCellFilterTriplet aTriplet)
 {
     iKey     = aKey;
     iTriplet = aTriplet;
 }