And in maker.cpp I have to do the same what I was doing with MainWindow:
Qt Code:
  1. MainWindow::MainWindow(QMainWindow *parent)
  2. : QMainWindow(parent)
  3. {
  4. ui.setupUi(this);
  5.  
  6. }
  7.  
  8. void MainWindow::on_actionAbout_triggered()
  9. {
  10.  
  11.  
  12. Dialog dlg( this );
  13.  
  14.  
  15.  
  16. dlg.exec();
  17.  
  18.  
  19.  
  20. }
To copy to clipboard, switch view to plain text mode 
but without implementing slots, right?