[gtkada] Need help overloading Show_All

Arnaud Charlet charlet at ACT-Europe.FR
Mon May 13 18:33:45 CEST 2002


That's really an Ada (OO) question.

>    procedure Show_All
>       (Dialog : access Base_Dialog_Record'Class);

You're defining a non dispatching procedure, you want a dispatching one:

   procedure Show_All (Dialog : access Base_Dialog_Record);

Arno




More information about the gtkada mailing list