Hello!

I've got in my header file signal:

Qt Code:
  1. signals:
  2. void mySignal(int i);
To copy to clipboard, switch view to plain text mode 

Sometimes mySignal(int i) is emitted by different slots:

Qt Code:
  1. connect(pushButton, SIGNAL(clicked()), this, SLOT(myFunc));
  2.  
  3. [...]
  4.  
  5. void MainWindow::myFunc()
  6. {
  7. mySignal(10);
  8. }
To copy to clipboard, switch view to plain text mode 

How can I catch that signal?

thanks in advance
best regards
Tomasz