You are using uninitialized pointer in there, your slot should look like this:
Qt Code:
  1. void Imoti::on_pushButton_clicked()
  2. {
  3. about *one = new about(this); //use a pointer and then create the object and allocate memory with new
  4. one->show(); //non-modal
  5. }
To copy to clipboard, switch view to plain text mode 
or, in case you want modal:
Qt Code:
  1. void Imoti::on_pushButton_clicked()
  2. {
  3. about one(this); //create a object directly
  4. one.exec(); //modal dialog
  5. }
To copy to clipboard, switch view to plain text mode 

LE: added 'this' as a parent for modal dialog too...