<p>Am 25.01.2012 20:26 schrieb "Mattias Gaertner" <<a href="mailto:nc-gaertnma@netcologne.de">nc-gaertnma@netcologne.de</a>>:<br>
><br>
> Hi all,<br>
><br>
> I improved class completion to update multiple method<br>
> signatures.<br>
><br>
> For example:<br>
><br>
> type<br>
>  TMyClass = class<br>
>  public<br>
>    procedure DoIt(a: integer); // parameter added<br>
>    procedure HandleIt(s: string); // parameter changed<br>
>  end;<br>
><br>
> procedure TMyClass.DoIt;<br>
> begin<br>
> end;<br>
><br>
> procedure TMyClass.HandleIt(param: char);<br>
> begin<br>
> end;<br>
><br>
> Doing code completion Ctrl+Shift+C in the TMyClass interface<br>
> updates the implementation:<br>
><br>
> procedure TMyClass.DoIt(a: integer);<br>
> begin<br>
> end;<br>
><br>
> procedure TMyClass.HandleIt(s: string);<br>
> begin<br>
> end;<br>
><br>
> When working with overloads (methods with same name but different<br>
> parameter types) you have to change one signature at a time. Same as<br>
> before.</p>
<p>Finally! Thank you! :D</p>
<p>Regards,<br>
Sven<br>
</p>