<div dir="ltr">Oops, indeed, i was tripped up by the not in "(not (Control is TCustomForm)) or ..." part. <br><div><div><div><div><br><br></div></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, May 18, 2017 at 10:28 AM, Mattias Gaertner via Lazarus <span dir="ltr"><<a href="mailto:lazarus@lists.lazarus-ide.org" target="_blank">lazarus@lists.lazarus-ide.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thu, 18 May 2017 02:43:10 +0300<br>
Kostas Michalopoulos via Lazarus <<a href="mailto:lazarus@lists.lazarus-ide.org">lazarus@lists.lazarus-ide.org</a><wbr>> wrote:<br>
<br>
> I see the patch was added and Lazarus seems to work fine now, but the check<br>
> was altered a little. The current check assumes that the Control will never<br>
> be nil, but is this the case?<br>
<br>
</span>The "is" operator checks for nil.<br>
<br>
 if Assigned(Control) and (Control is TCustomForm) then<br>
<br>
<=><br>
<br>
 if Control is TCustomForm then<br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
Mattias<br>
--<br>
______________________________<wbr>_________________<br>
Lazarus mailing list<br>
<a href="mailto:Lazarus@lists.lazarus-ide.org">Lazarus@lists.lazarus-ide.org</a><br>
<a href="http://lists.lazarus-ide.org/listinfo/lazarus" rel="noreferrer" target="_blank">http://lists.lazarus-ide.org/<wbr>listinfo/lazarus</a><br>
</font></span></blockquote></div><br></div>