PDA

View Full Version : member action



mickey
23rd July 2006, 21:08
hi, I subclassed mainform class to mymainform class; now it happen that I need use mainform action and to do this I can only in this way in connect:


connect(MainForm::Actionstart......

it seems work; but is there another way? thanks

wysota
23rd July 2006, 22:09
If the action is a member of a class, access it like any other member... If you subclass, you gain access to any non-private member of the superclass.