QDialog Constructor : Use windows flags to avoid '?' on Windows

This commit is contained in:
Magne Sjaastad
2017-11-27 09:16:14 +01:00
parent 128f2eaee7
commit 3e5a4945d1
4 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@
///
//--------------------------------------------------------------------------------------------------
RiuSummaryCurveDefSelectionDialog::RiuSummaryCurveDefSelectionDialog(QWidget* parent)
: QDialog(parent)
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint)
{
m_addrSelWidget = std::unique_ptr<RiuSummaryCurveDefSelectionEditor>(new RiuSummaryCurveDefSelectionEditor());
QWidget* addrWidget = m_addrSelWidget->getOrCreateWidget(this);