From 03fcba69a233b7450aa5c38e860bc866e968ed0b Mon Sep 17 00:00:00 2001 From: vsr Date: Fri, 25 Mar 2011 09:53:11 +0000 Subject: [PATCH] Fix bug of the previous integration - bad window flags are set --- src/SalomeApp/SalomeApp_StudyPropertiesDlg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2