I have following code:
Qt Code:
  1. class MyProxy : public QObject
  2. {
  3. Q_OBJECT
  4. public:
  5. MyProxy() : QObject()
  6. {
  7.  
  8. }
  9. public slots:
  10. void ButtonPress2()
  11. {
  12. emit SIGNAL(Change());
  13. }
  14. void Changed()
  15. {
  16. QMessageBox::information(0, "Changed","Changed");
  17. }
  18. signals:
  19. void Change();
  20. };
To copy to clipboard, switch view to plain text mode 

ButtonPress2() is being called from button's clicked() signal, however Changed() slot is never called.

Sorry, I'm absolutely newbie in QT...