In my Qt creator application im emitting a signal by calling a member function,
void MyWidget::EmitSignal()
{
emit Update();
}
How to track the emitted signal while i call the member function?
connect(this,&MyWdiget::Update,this,&MyWidget::SomeRecivedSlot);
or
connect(this,SIGNAL(Update()),this,SLOT(SomeRecivedSlot()));
Follow the above methods and it is working
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With