CREditor.pas(295,37) Error: Illegal type conversion: "Variant" to "NativeInt"
{$IFDEF CLR}
Obj := GetObjectProp(Control, PropInfo) as TPersistent;
{$ELSE}
Obj := TPersistent(NativeInt(GetPropValue(Control, string(PropList.Name))));
{$ENDIF}
if (Obj <> nil) and (Obj.ClassName <> 'TMemoStrings'{$IFDEF CLR}{$IFDEF VER9P} + '$StdCtrls'{$ENDIF}{$ENDIF}) then begin
Assert(Obj is TPersistent);
{$IFDEF CLR}
NewObj := GetObjectProp(NewControl, PropList.Name) as TPersistent;
{$ELSE}
NewObj := TPersistent(NativeInt(GetPropValue(NewControl, string(PropList.Name)))); //////line 295
<<<<<<<<<<<<<<<<
{$ENDIF}
install on Lazarus 1.6 don't have same problem.