From: vsr Date: Fri, 25 Mar 2011 09:53:11 +0000 (+0000) Subject: Fix bug of the previous integration - bad window flags are set X-Git-Tag: V6_3_0a1~17 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=03fcba69a233b7450aa5c38e860bc866e968ed0b;p=modules%2Fgui.git Fix bug of the previous integration - bad window flags are set --- diff --git a/src/SalomeApp/SalomeApp_StudyPropertiesDlg.cxx b/src/SalomeApp/SalomeApp_StudyPropertiesDlg.cxx index 10dc12288..32e612e6e 100644 --- a/src/SalomeApp/SalomeApp_StudyPropertiesDlg.cxx +++ b/src/SalomeApp/SalomeApp_StudyPropertiesDlg.cxx @@ -149,7 +149,7 @@ SalomeApp_StudyPropertiesDlg::SalomeApp_StudyPropertiesDlg(QWidget* parent) setWindowTitle(tr("TLT_STUDY_PROPERTIES")); setSizeGripEnabled( true ); - setWindowFlags( windowFlags() ^ QFlags(windowFlags() & ~(Qt::WindowContextHelpButtonHint) ) ); + setWindowFlags( windowFlags() & ~Qt::WindowContextHelpButtonHint ); QGridLayout* mainLayout = new QGridLayout(this); mainLayout->setMargin(DEFAULT_MARGIN);