Qt::WFlags is obsolete in Qt5. Replace it with Qt::WindowFlags.

This change is Qt4/Qt5 neutral.
This commit is contained in:
Mateusz Skowroński
2015-12-15 07:01:09 +01:00
committed by wmayer
parent c275b35d48
commit f48f0f69be
93 changed files with 111 additions and 111 deletions

View File

@@ -46,7 +46,7 @@ using namespace Gui::Dialog;
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
DlgRunExternal::DlgRunExternal( QWidget* parent, Qt::WFlags fl )
DlgRunExternal::DlgRunExternal( QWidget* parent, Qt::WindowFlags fl )
: QDialog(parent, fl),process(this),advancedHidden(true)
{
ui = new Ui_DlgRunExternal();