I create an instance of QDialog and on the left of \'x\' (close) button i have also \'?\' button. How I can disable that \'?\' ?
Change the window flags, for example in the constructor:
this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);