Hello

i have implemented my About this app window using Qdialog
so basically i get a small popup which displays some informations about my app.

Code example:
Qt Code:
  1. QDialog about(this);
  2. about.setModal(true);
  3. about.setWindowTitle(tr("About my app"));
  4. about.setLayout(mainLayout);
To copy to clipboard, switch view to plain text mode 

Using this code i get a small window with 2 window-control buttons in the head:
1 x X to close the window
1 x ? which can be used for helpdialogs.

Can i get rid of this question-mark button in the qdialog window ?
Best regards in advance