| 123456789101112131415161718 | using System;namespace InABox.Core{    public class PopupEditor : DataLookupEditor    {                        public PopupEditor(Type type, params string[] otherfields) : base(type, otherfields)        {        }        protected override BaseEditor DoClone()        {            return CloneDataLookupEditor();        }    }}
 |