hi! I am new to qt and now I have a little problem((
Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication app(argc, argv);
  4.  
  5. QWidget wnd;
  6. wnd.resize(200, 100);
  7. wnd.setWindowTitle("w3.cpp");
  8. wnd.show();
  9.  
  10. QPushButton *btn = new QPushButton("Press Me", &wnd);
  11. QObject::connect(btn, SIGNAL(clicked()), btn, SLOT(setText("hi!")));
  12. btn->move(50, 40);
  13. btn->show();
  14.  
  15. return app.exec();
  16. }
To copy to clipboard, switch view to plain text mode 

i just want to do such thing - after clicking button its text changes to "hi"))
where is my mistake??? help please((