DELPHI2007+CASTALIA5 : How i can move a function in another Unit (FAST MODE) ?



Hi

I'm tring Castalia 5 and Delphi 2007.

i'm tring the Refactoring -> MoveClass

i have a problem , i can't move a function
from Unit1 to Unit2. ( no dfm )

i have 5000 function in unit1 ( too big src.. ) , I want move 2000
functions in unit2.

example :

OLD HEAVY UNIT 1

unit Uni1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

procedure Pippo;
procedure Pippo2;
implementation

procedure Pippo;
begin
beep;
end;
procedure Pippo2;
begin
beep;
end;
end.

--

NEW EMPTY UNIT 2 :

unit Unit2;
interface
implementation
end.

I press CTRL-ALT-R , but is not available a menu for move any functions.

How i can move PIPPO function in Unit2 in very fast mode ?


.