I'm not sure that i understand your code, but:
this:
Qt Code:
  1. this->about = new DialogAbout(parent);
To copy to clipboard, switch view to plain text mode 
shouldn't be like this?
Qt Code:
  1. this->about = new DialogAbout(this);
To copy to clipboard, switch view to plain text mode