hi, is there any problems if I call a SLOT that is connected to a signal?? thanks
Code:
conenct (this, SIGNAL(sig()), this, SLOT(myslot())); //in another part of program: void objec::function { myslot(); }
Printable View
hi, is there any problems if I call a SLOT that is connected to a signal?? thanks
Code:
conenct (this, SIGNAL(sig()), this, SLOT(myslot())); //in another part of program: void objec::function { myslot(); }
No, unless that slots depends on a value returned by QObject::sender().