I use a TVirtualStringTree component. With this code the image will show duplicated. How can I fix it?

procedure TFAbzarCode.VST1GetImageIndex(Sender: TBaseVirtualTree;
Node: PVirtualNode; Kind: TVTImageKind; Column: TColumnIndex;
var Ghosted: Boolean; var ImageIndex: TImageIndex);
var
NodeData: ^rTreeData;
MImageIndex:integer;
begin
NodeData := Sender.GetNodeData(Node);
ImageIndex:=NodeData.ImageIndex;
end;
I want only one icon beside the text
This code fixed the problem.