Reputation: 17138
is it possible to remove close button from QDialog?
Upvotes: 2
Views: 5176
Reputation: 205
Use window flags. For example:
QDialog d(0, Qt::CustomizeWindowHint|Qt::WindowTitleHint); d.exec();
Upvotes: 9