简体   繁体   中英

How to capture emitted signal in same class in Qt creator

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM