2 changes: 1 addition & 1 deletion src/gui/qgscredentialdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <QSettings>
#include <QThread>

QgsCredentialDialog::QgsCredentialDialog( QWidget *parent, Qt::WFlags fl )
QgsCredentialDialog::QgsCredentialDialog( QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgscredentialdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class GUI_EXPORT QgsCredentialDialog : public QDialog, public QgsCredentials, pr
{
Q_OBJECT
public:
QgsCredentialDialog( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsCredentialDialog( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
~QgsCredentialDialog();

signals:
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include "qgsdialog.h"

QgsDialog::QgsDialog( QWidget *parent, Qt::WFlags fl,
QgsDialog::QgsDialog( QWidget *parent, Qt::WindowFlags fl,
QDialogButtonBox::StandardButtons buttons,
Qt::Orientation orientation )
: QDialog( parent, fl )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class GUI_EXPORT QgsDialog : public QDialog
{
Q_OBJECT
public:
QgsDialog( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags,
QgsDialog( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags,
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Close,
Qt::Orientation orientation = Qt::Horizontal );
~QgsDialog();
Expand Down
4 changes: 2 additions & 2 deletions src/gui/qgserrordialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <QMessageBox>
#include <QSettings>

QgsErrorDialog::QgsErrorDialog( const QgsError & theError, const QString & theTitle, QWidget *parent, Qt::WFlags fl )
QgsErrorDialog::QgsErrorDialog( const QgsError & theError, const QString & theTitle, QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
, mError( theError )
{
Expand Down Expand Up @@ -56,7 +56,7 @@ QgsErrorDialog::~QgsErrorDialog()
{
}

void QgsErrorDialog::show( const QgsError & theError, const QString & theTitle, QWidget *parent, Qt::WFlags fl )
void QgsErrorDialog::show( const QgsError & theError, const QString & theTitle, QWidget *parent, Qt::WindowFlags fl )
{
QgsErrorDialog d( theError, theTitle, parent, fl );
d.exec();
Expand Down
4 changes: 2 additions & 2 deletions src/gui/qgserrordialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class GUI_EXPORT QgsErrorDialog: public QDialog, private Ui::QgsErrorDialogBase
{
Q_OBJECT
public:
QgsErrorDialog( const QgsError & theError, const QString & theTitle, QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsErrorDialog( const QgsError & theError, const QString & theTitle, QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
~QgsErrorDialog();

/** Show dialog with error
Expand All @@ -36,7 +36,7 @@ class GUI_EXPORT QgsErrorDialog: public QDialog, private Ui::QgsErrorDialogBase
* @param parent parent object
* @param fl widget flags
*/
static void show( const QgsError & theError, const QString & theTitle, QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
static void show( const QgsError & theError, const QString & theTitle, QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );

public slots:
void on_mDetailPushButton_clicked();
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsgenericprojectionselector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* \brief A generic dialog to prompt the user for a Coordinate Reference System
*/
QgsGenericProjectionSelector::QgsGenericProjectionSelector( QWidget *parent,
Qt::WFlags fl )
Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsgenericprojectionselector.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class GUI_EXPORT QgsGenericProjectionSelector : public QDialog, private Ui::QgsG
* Constructor
*/
QgsGenericProjectionSelector( QWidget *parent = 0,
Qt::WFlags fl = QgisGui::ModalDialogFlags );
Qt::WindowFlags fl = QgisGui::ModalDialogFlags );

//! Destructor
~QgsGenericProjectionSelector();
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsludialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "qgsludialog.h"


QgsLUDialog::QgsLUDialog( QWidget *parent, Qt::WFlags fl )
QgsLUDialog::QgsLUDialog( QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsludialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class GUI_EXPORT QgsLUDialog: public QDialog, private Ui::QgsLUDialogBase
{
Q_OBJECT
public:
QgsLUDialog( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsLUDialog( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
~QgsLUDialog();
QString lowerValue() const;
void setLowerValue( QString val );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsmessagelogviewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static QIcon icon( QString icon )
return QIcon( path );
}

QgsMessageLogViewer::QgsMessageLogViewer( QStatusBar *statusBar, QWidget *parent, Qt::WFlags fl )
QgsMessageLogViewer::QgsMessageLogViewer( QStatusBar *statusBar, QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
, mButton( 0 )
, mCount( 0 )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsmessagelogviewer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class GUI_EXPORT QgsMessageLogViewer: public QDialog, private Ui::QgsMessageLogV
{
Q_OBJECT
public:
QgsMessageLogViewer( QStatusBar *statusBar = 0, QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsMessageLogViewer( QStatusBar *statusBar = 0, QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
~QgsMessageLogViewer();

public slots:
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsmessageviewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "qgsmessageviewer.h"
#include <QSettings>

QgsMessageViewer::QgsMessageViewer( QWidget *parent, Qt::WFlags fl, bool deleteOnClose )
QgsMessageViewer::QgsMessageViewer( QWidget *parent, Qt::WindowFlags fl, bool deleteOnClose )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsmessageviewer.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class GUI_EXPORT QgsMessageViewer: public QDialog, public QgsMessageOutput, priv
{
Q_OBJECT
public:
QgsMessageViewer( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool deleteOnClose = true );
QgsMessageViewer( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool deleteOnClose = true );
~QgsMessageViewer();

virtual void setMessage( const QString& message, MessageType msgType );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsnewhttpconnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <QRegExpValidator>

QgsNewHttpConnection::QgsNewHttpConnection(
QWidget *parent, const QString& baseKey, const QString& connName, Qt::WFlags fl ):
QWidget *parent, const QString& baseKey, const QString& connName, Qt::WindowFlags fl ):
QDialog( parent, fl ),
mBaseKey( baseKey ),
mOriginalConnName( connName )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsnewhttpconnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GUI_EXPORT QgsNewHttpConnection : public QDialog, private Ui::QgsNewHttpCo

public:
//! Constructor
QgsNewHttpConnection( QWidget *parent = 0, const QString& baseKey = "/Qgis/connections-wms/", const QString& connName = QString::null, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsNewHttpConnection( QWidget *parent = 0, const QString& baseKey = "/Qgis/connections-wms/", const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsNewHttpConnection();
public slots:
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsnewvectorlayerdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include <QFileDialog>


QgsNewVectorLayerDialog::QgsNewVectorLayerDialog( QWidget *parent, Qt::WFlags fl )
QgsNewVectorLayerDialog::QgsNewVectorLayerDialog( QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsnewvectorlayerdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class GUI_EXPORT QgsNewVectorLayerDialog: public QDialog, private Ui::QgsNewVect
// run the dialog, create the layer. Return file name if the creation was successful
static QString runAndCreateLayer( QWidget* parent = 0, QString* enc = 0 );

QgsNewVectorLayerDialog( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsNewVectorLayerDialog( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
~QgsNewVectorLayerDialog();
/**Returns the selected geometry type*/
QGis::WkbType selectedType() const;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsoptionsdialogbase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <QTimer>


QgsOptionsDialogBase::QgsOptionsDialogBase( QString settingsKey, QWidget* parent, Qt::WFlags fl, QSettings* settings )
QgsOptionsDialogBase::QgsOptionsDialogBase( QString settingsKey, QWidget* parent, Qt::WindowFlags fl, QSettings* settings )
: QDialog( parent, fl )
, mOptsKey( settingsKey )
, mInit( false )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsoptionsdialogbase.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class GUI_EXPORT QgsOptionsDialogBase : public QDialog
* @param fl widget flags
* @param settings custom QSettings pointer
*/
QgsOptionsDialogBase( QString settingsKey, QWidget* parent = 0, Qt::WFlags fl = 0, QSettings* settings = 0 );
QgsOptionsDialogBase( QString settingsKey, QWidget* parent = 0, Qt::WindowFlags fl = 0, QSettings* settings = 0 );
~QgsOptionsDialogBase();

/** Set up the base ui connections for vertical tabs.
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsowssourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#include <QNetworkRequest>
#include <QNetworkReply>

QgsOWSSourceSelect::QgsOWSSourceSelect( QString service, QWidget * parent, Qt::WFlags fl, bool managerMode, bool embeddedMode )
QgsOWSSourceSelect::QgsOWSSourceSelect( QString service, QWidget * parent, Qt::WindowFlags fl, bool managerMode, bool embeddedMode )
: QDialog( parent, fl )
, mService( service )
, mManagerMode( managerMode )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsowssourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class GUI_EXPORT QgsOWSSourceSelect : public QDialog, public Ui::QgsOWSSourceSel
};

//! Constructor
QgsOWSSourceSelect( QString service, QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
QgsOWSSourceSelect( QString service, QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsOWSSourceSelect();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsprojectionselector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <QMessageBox>
#include <QSettings>

QgsProjectionSelector::QgsProjectionSelector( QWidget* parent, const char *name, Qt::WFlags fl )
QgsProjectionSelector::QgsProjectionSelector( QWidget* parent, const char *name, Qt::WindowFlags fl )
: QWidget( parent, fl )
, mProjListDone( false )
, mUserProjListDone( false )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsprojectionselector.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GUI_EXPORT QgsProjectionSelector : public QWidget, private Ui::QgsProjecti
{
Q_OBJECT
public:
QgsProjectionSelector( QWidget* parent, const char *name = "", Qt::WFlags fl = 0 );
QgsProjectionSelector( QWidget* parent, const char *name = "", Qt::WindowFlags fl = 0 );

~QgsProjectionSelector();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsquerybuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// constructor used when the query builder must make its own
// connection to the database
QgsQueryBuilder::QgsQueryBuilder( QgsVectorLayer *layer,
QWidget *parent, Qt::WFlags fl )
QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
, mPreviousFieldRow( -1 )
, mLayer( layer )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsquerybuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class GUI_EXPORT QgsQueryBuilder : public QDialog, private Ui::QgsQueryBuilderBa
* @param fl dialog flags
*/
QgsQueryBuilder( QgsVectorLayer *layer, QWidget *parent = 0,
Qt::WFlags fl = QgisGui::ModalDialogFlags );
Qt::WindowFlags fl = QgisGui::ModalDialogFlags );

~QgsQueryBuilder();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgssearchquerybuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "qgslogger.h"

QgsSearchQueryBuilder::QgsSearchQueryBuilder( QgsVectorLayer* layer,
QWidget *parent, Qt::WFlags fl )
QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl ), mLayer( layer )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgssearchquerybuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class GUI_EXPORT QgsSearchQueryBuilder : public QDialog, private Ui::QgsQueryBui
public:
//! Constructor - takes pointer to vector layer as a parameter
QgsSearchQueryBuilder( QgsVectorLayer* layer, QWidget *parent = 0,
Qt::WFlags fl = QgisGui::ModalDialogFlags );
Qt::WindowFlags fl = QgisGui::ModalDialogFlags );

~QgsSearchQueryBuilder();

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgssublayersdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


QgsSublayersDialog::QgsSublayersDialog( ProviderType providerType, QString name,
QWidget* parent, Qt::WFlags fl )
QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl ), mName( name )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgssublayersdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class GUI_EXPORT QgsSublayersDialog : public QDialog, private Ui::QgsSublayersDi
Vsifile
};

QgsSublayersDialog( ProviderType providerType, QString name, QWidget* parent = 0, Qt::WFlags fl = 0 );
QgsSublayersDialog( ProviderType providerType, QString name, QWidget* parent = 0, Qt::WindowFlags fl = 0 );
~QgsSublayersDialog();

void populateLayerTable( QStringList theList, QString delim = ":" );
Expand Down
2 changes: 1 addition & 1 deletion src/gui/symbology-ng/qgssvgselectorwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ void QgsSvgSelectorWidget::populateList()

//-- QgsSvgSelectorDialog

QgsSvgSelectorDialog::QgsSvgSelectorDialog( QWidget *parent, Qt::WFlags fl,
QgsSvgSelectorDialog::QgsSvgSelectorDialog( QWidget *parent, Qt::WindowFlags fl,
QDialogButtonBox::StandardButtons buttons,
Qt::Orientation orientation )
: QDialog( parent, fl )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/symbology-ng/qgssvgselectorwidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class GUI_EXPORT QgsSvgSelectorDialog : public QDialog
{
Q_OBJECT
public:
QgsSvgSelectorDialog( QWidget* parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags,
QgsSvgSelectorDialog( QWidget* parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags,
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Close | QDialogButtonBox::Ok,
Qt::Orientation orientation = Qt::Horizontal );
~QgsSvgSelectorDialog();
Expand Down
2 changes: 1 addition & 1 deletion src/helpviewer/qgshelpviewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void QgsReaderThread::run()
}
}

QgsHelpViewer::QgsHelpViewer( QWidget *parent, Qt::WFlags fl )
QgsHelpViewer::QgsHelpViewer( QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/helpviewer/qgshelpviewer.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class QgsHelpViewer : public QDialog, private Ui::QgsHelpViewerBase
{
Q_OBJECT
public:
QgsHelpViewer( QWidget *parent = 0, Qt::WFlags = 0 );
QgsHelpViewer( QWidget *parent = 0, Qt::WindowFlags = 0 );
~QgsHelpViewer();
public slots:
void showHelp( QString );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/compass/qgscompassplugingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "qgscompassplugingui.h"
#include "compass.h"

QgsCompassPluginGui::QgsCompassPluginGui( QWidget * parent, Qt::WFlags fl )
QgsCompassPluginGui::QgsCompassPluginGui( QWidget * parent, Qt::WindowFlags fl )
: QWidget( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/compass/qgscompassplugingui.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class QgsCompassPluginGui : public QWidget, private Ui::QgsCompassPluginGuiBase
Q_OBJECT

public:
QgsCompassPluginGui( QWidget* parent = 0, Qt::WFlags fl = 0 );
QgsCompassPluginGui( QWidget* parent = 0, Qt::WindowFlags fl = 0 );
~QgsCompassPluginGui();

private:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/coordinate_capture/coordinatecapturegui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

//standard includes

CoordinateCaptureGui::CoordinateCaptureGui( QWidget* parent, Qt::WFlags fl )
CoordinateCaptureGui::CoordinateCaptureGui( QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/coordinate_capture/coordinatecapturegui.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CoordinateCaptureGui : public QDialog
Q_OBJECT

public:
CoordinateCaptureGui( QWidget* parent = 0, Qt::WFlags fl = 0 );
CoordinateCaptureGui( QWidget* parent = 0, Qt::WindowFlags fl = 0 );
~CoordinateCaptureGui();

private slots:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/dxf2shp_converter/dxf2shpconvertergui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

#include "qgslogger.h"

dxf2shpConverterGui::dxf2shpConverterGui( QWidget *parent, Qt::WFlags fl ):
dxf2shpConverterGui::dxf2shpConverterGui( QWidget *parent, Qt::WindowFlags fl ):
QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/dxf2shp_converter/dxf2shpconvertergui.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class dxf2shpConverterGui: public QDialog, private Ui::dxf2shpConverterGui
Q_OBJECT

public:
dxf2shpConverterGui( QWidget *parent = 0, Qt::WFlags fl = 0 );
dxf2shpConverterGui( QWidget *parent = 0, Qt::WindowFlags fl = 0 );
~dxf2shpConverterGui();

private:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* @param parent - Pointer the to parent QWidget for modality
* @param fl - Windown flags
*/
eVisDatabaseConnectionGui::eVisDatabaseConnectionGui( QList<QTemporaryFile*>* theTemoraryFileList, QWidget* parent, Qt::WFlags fl )
eVisDatabaseConnectionGui::eVisDatabaseConnectionGui( QList<QTemporaryFile*>* theTemoraryFileList, QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class eVisDatabaseConnectionGui : public QDialog, private Ui::eVisDatabaseConnec

public:
/** \brief Constructor */
eVisDatabaseConnectionGui( QList<QTemporaryFile*>*, QWidget* parent = 0, Qt::WFlags fl = 0 );
eVisDatabaseConnectionGui( QList<QTemporaryFile*>*, QWidget* parent = 0, Qt::WindowFlags fl = 0 );

/** \brief Destructor */
~eVisDatabaseConnectionGui( );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @param parent - Pointer the to parent QWidget for modality
* @param fl - Windown flags
*/
eVisDatabaseLayerFieldSelectionGui::eVisDatabaseLayerFieldSelectionGui( QWidget* parent, Qt::WFlags fl )
eVisDatabaseLayerFieldSelectionGui::eVisDatabaseLayerFieldSelectionGui( QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class eVisDatabaseLayerFieldSelectionGui : public QDialog, private Ui::eVisDatab

public:
/** \brief Constructor */
eVisDatabaseLayerFieldSelectionGui( QWidget* parent, Qt::WFlags fl );
eVisDatabaseLayerFieldSelectionGui( QWidget* parent, Qt::WindowFlags fl );

/** \brief Public method that sets the contents of the combo boxes with the available field names */
void setFieldList( QStringList* );
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/evis/eventbrowser/evisgenericeventbrowsergui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
* @param interface - Pointer to the application interface
* @param fl - Window flags
*/
eVisGenericEventBrowserGui::eVisGenericEventBrowserGui( QWidget* parent, QgisInterface* interface, Qt::WFlags fl )
eVisGenericEventBrowserGui::eVisGenericEventBrowserGui( QWidget* parent, QgisInterface* interface, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down Expand Up @@ -83,7 +83,7 @@ eVisGenericEventBrowserGui::eVisGenericEventBrowserGui( QWidget* parent, QgisInt
* @param canvas - Pointer to the map canvas
* @param fl - Window flags
*/
eVisGenericEventBrowserGui::eVisGenericEventBrowserGui( QWidget* parent, QgsMapCanvas* canvas, Qt::WFlags fl )
eVisGenericEventBrowserGui::eVisGenericEventBrowserGui( QWidget* parent, QgsMapCanvas* canvas, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/evis/eventbrowser/evisgenericeventbrowsergui.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ class eVisGenericEventBrowserGui : public QDialog, private Ui::eVisGenericEventB

public:
/** \brief Constructor called when button is pressed in the plugin toolbar */
eVisGenericEventBrowserGui( QWidget* parent, QgisInterface* interface, Qt::WFlags fl );
eVisGenericEventBrowserGui( QWidget* parent, QgisInterface* interface, Qt::WindowFlags fl );

/** \brief Constructor called when new browser is requested by the eVisEventIdTool */
eVisGenericEventBrowserGui( QWidget* parent, QgsMapCanvas* canvas, Qt::WFlags fl );
eVisGenericEventBrowserGui( QWidget* parent, QgsMapCanvas* canvas, Qt::WindowFlags fl );

/** \Brief Destructor */
~eVisGenericEventBrowserGui( );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/evis/eventbrowser/evisimagedisplaywidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* @param parent - Pointer the to parent QWidget for modality
* @param fl - Windown flags
*/
eVisImageDisplayWidget::eVisImageDisplayWidget( QWidget* parent, Qt::WFlags fl ) : QWidget( parent, fl )
eVisImageDisplayWidget::eVisImageDisplayWidget( QWidget* parent, Qt::WindowFlags fl ) : QWidget( parent, fl )
{
//Setup zoom buttons
pbtnZoomIn = new QPushButton( );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/evis/eventbrowser/evisimagedisplaywidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class eVisImageDisplayWidget : public QWidget

public:
/** \brief Constructor */
eVisImageDisplayWidget( QWidget* parent = 0, Qt::WFlags fl = 0 );
eVisImageDisplayWidget( QWidget* parent = 0, Qt::WindowFlags fl = 0 );

/** \brief Destructor */
~eVisImageDisplayWidget();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsgeorefplugingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ QgsGeorefDockWidget::QgsGeorefDockWidget( const QString & title, QWidget * paren
setObjectName( "GeorefDockWidget" ); // set object name so the position can be saved
}

QgsGeorefPluginGui::QgsGeorefPluginGui( QgisInterface* theQgisInterface, QWidget* parent, Qt::WFlags fl )
QgsGeorefPluginGui::QgsGeorefPluginGui( QgisInterface* theQgisInterface, QWidget* parent, Qt::WindowFlags fl )
: QMainWindow( parent, fl )
, mMousePrecisionDecimalPlaces( 0 )
, mTransformParam( QgsGeorefTransform::InvalidTransform )
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsgeorefplugingui.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class QgsGeorefPluginGui : public QMainWindow, private Ui::QgsGeorefPluginGuiBas
Q_OBJECT

public:
QgsGeorefPluginGui( QgisInterface* theQgisInterface, QWidget* parent = 0, Qt::WFlags fl = 0 );
QgsGeorefPluginGui( QgisInterface* theQgisInterface, QWidget* parent = 0, Qt::WindowFlags fl = 0 );
~QgsGeorefPluginGui();

protected:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/globe/globe_plugin_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <osg/DisplaySettings>

//constructor
QgsGlobePluginDialog::QgsGlobePluginDialog( QWidget* parent, GlobePlugin* globe, Qt::WFlags fl )
QgsGlobePluginDialog::QgsGlobePluginDialog( QWidget* parent, GlobePlugin* globe, Qt::WindowFlags fl )
: QDialog( parent, fl )
, mGlobe( globe )
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/globe/globe_plugin_dialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class QgsGlobePluginDialog: public QDialog, private Ui::QgsGlobePluginDialogGuiB
Q_OBJECT

public:
QgsGlobePluginDialog( QWidget * parent, GlobePlugin* globe, Qt::WFlags fl = 0 );
QgsGlobePluginDialog( QWidget * parent, GlobePlugin* globe, Qt::WindowFlags fl = 0 );
~QgsGlobePluginDialog();
void resetElevationDatasources();
void readElevationDatasources();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/gps_importer/qgsgpsplugingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
QgsGPSPluginGui::QgsGPSPluginGui( const BabelMap& importers,
std::map<QString, QgsGPSDevice*>& devices,
std::vector<QgsVectorLayer*> gpxMapLayers,
QWidget* parent, Qt::WFlags fl )
QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
, mGPXLayers( gpxMapLayers )
, mImporters( importers )
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/gps_importer/qgsgpsplugingui.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class QgsGPSPluginGui : public QDialog, private Ui::QgsGPSPluginGuiBase
QgsGPSPluginGui( const BabelMap& importers,
std::map<QString, QgsGPSDevice*>& devices,
std::vector<QgsVectorLayer*> gpxMapLayers,
QWidget* parent, Qt::WFlags );
QWidget* parent, Qt::WindowFlags );
~QgsGPSPluginGui();

public slots:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassattributes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ bool QgsGrassAttributesKeyPress::eventFilter( QObject *o, QEvent *e )
}

QgsGrassAttributes::QgsGrassAttributes( QgsGrassEdit *edit, QgsGrassProvider *provider, int line,
QWidget * parent, const char * name, Qt::WFlags f )
QWidget * parent, const char * name, Qt::WindowFlags f )
: QDialog( parent, f ), QgsGrassAttributesBase()
{
Q_UNUSED( name );
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassattributes.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class QgsGrassAttributes: public QDialog, private Ui::QgsGrassAttributesBase
//! Constructor
QgsGrassAttributes( QgsGrassEdit *edit, QgsGrassProvider *provider, int line,
QWidget * parent = 0, const char * name = 0,
Qt::WFlags f = Qt::Window );
//Qt::WFlags f = Qt::WStyle_Customize | Qt::WStyle_DialogBorder | Qt::WStyle_Title | Qt::WType_Dialog | Qt::WStyle_Tool);
Qt::WindowFlags f = Qt::Window );
//Qt::WindowFlags f = Qt::WStyle_Customize | Qt::WStyle_DialogBorder | Qt::WStyle_Title | Qt::WType_Dialog | Qt::WStyle_Tool);

//! Destructor
~QgsGrassAttributes();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassbrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@


QgsGrassBrowser::QgsGrassBrowser( QgisInterface *iface,
QWidget * parent, Qt::WFlags f )
QWidget * parent, Qt::WindowFlags f )
: QMainWindow( parent, Qt::Dialog ), mIface( iface ), mRunningMods( 0 )
{
Q_UNUSED( f );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassbrowser.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class QgsGrassBrowser: public QMainWindow

public:
//! Constructor
QgsGrassBrowser( QgisInterface *iface, QWidget * parent = 0, Qt::WFlags f = 0 );
QgsGrassBrowser( QgisInterface *iface, QWidget * parent = 0, Qt::WindowFlags f = 0 );

//! Destructor
~QgsGrassBrowser();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassedit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void QgsGrassEditAttributeTableItemDelegate::setModelData( QWidget *editor,
bool QgsGrassEdit::mRunning = false;

QgsGrassEdit::QgsGrassEdit( QgisInterface *iface, QgsMapLayer* layer, bool newMap,
QWidget * parent, Qt::WFlags f )
QWidget * parent, Qt::WindowFlags f )
: QMainWindow( parent, f ), QgsGrassEditBase(), mInited( false ),
mMapTool( 0 ), mCanvasEdit( 0 ), mRubberBandLine( 0 ), mRubberBandIcon( 0 )
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassedit.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class QgsGrassEdit: public QMainWindow, private Ui::QgsGrassEditBase
//! Constructor
QgsGrassEdit( QgisInterface *iface,
QgsMapLayer *layer, bool newMap,
QWidget * parent = 0, Qt::WFlags f = 0 );
QWidget * parent = 0, Qt::WindowFlags f = 0 );

// Shared by constructors
void init();
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassmapcalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
QgsGrassMapcalc::QgsGrassMapcalc(
QgsGrassTools *tools, QgsGrassModule *module,
QgisInterface *iface,
QWidget * parent, Qt::WFlags f )
QWidget * parent, Qt::WindowFlags f )
: QMainWindow( iface->mainWindow(), Qt::Dialog )
, QgsGrassMapcalcBase( )
, QgsGrassModuleOptions( tools, module, iface, false )
Expand Down Expand Up @@ -2135,7 +2135,7 @@ QgsGrassMapcalcFunction::QgsGrassMapcalcFunction( int type, QString name,
/******************** CANVAS VIEW ******************************/

QgsGrassMapcalcView::QgsGrassMapcalcView( QgsGrassMapcalc * mapcalc,
QWidget * parent, Qt::WFlags f ) :
QWidget * parent, Qt::WindowFlags f ) :
QGraphicsView( parent )
{
Q_UNUSED( f );
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassmapcalc.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class QgsGrassMapcalc: public QMainWindow, private Ui::QgsGrassMapcalcBase,
QgsGrassMapcalc(
QgsGrassTools *tools, QgsGrassModule *module,
QgisInterface *iface,
QWidget * parent = 0, Qt::WFlags f = 0 );
QWidget * parent = 0, Qt::WindowFlags f = 0 );

//! Destructor
~QgsGrassMapcalc();
Expand Down Expand Up @@ -525,7 +525,7 @@ class QgsGrassMapcalcView: public QGraphicsView
Q_OBJECT

public:
QgsGrassMapcalcView( QgsGrassMapcalc * mapcalc, QWidget * parent = 0, Qt::WFlags f = 0 );
QgsGrassMapcalcView( QgsGrassMapcalc * mapcalc, QWidget * parent = 0, Qt::WindowFlags f = 0 );

protected:
void mousePressEvent( QMouseEvent * e );
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassmodule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ QStringList QgsGrassModule::execArguments( QString module )
}

QgsGrassModule::QgsGrassModule( QgsGrassTools *tools, QString moduleName, QgisInterface *iface,
QString path, bool direct, QWidget * parent, Qt::WFlags f )
QString path, bool direct, QWidget * parent, Qt::WindowFlags f )
: QgsGrassModuleBase( ), mSuccess( false ), mDirect( direct )
{
Q_UNUSED( f );
Expand Down Expand Up @@ -308,7 +308,7 @@ QgsGrassModuleStandardOptions::QgsGrassModuleStandardOptions(
QgsGrassTools *tools, QgsGrassModule *module,
QgisInterface *iface,
QString xname, QDomElement qDocElem,
bool direct, QWidget * parent, Qt::WFlags f )
bool direct, QWidget * parent, Qt::WindowFlags f )
: QWidget( parent, f ),
QgsGrassModuleOptions( tools, module, iface, direct )
{
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassmodule.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class QgsGrassModule: public QDialog, private Ui::QgsGrassModuleBase

//! Constructor
QgsGrassModule( QgsGrassTools *tools, QString moduleName, QgisInterface *iface,
QString path, bool direct, QWidget *parent, Qt::WFlags f = 0 );
QString path, bool direct, QWidget *parent, Qt::WindowFlags f = 0 );

//! Destructor
~QgsGrassModule();
Expand Down Expand Up @@ -299,7 +299,7 @@ class QgsGrassModuleStandardOptions: QWidget, public QgsGrassModuleOptions
QgsGrassTools *tools, QgsGrassModule *module,
QgisInterface *iface,
QString xname, QDomElement docElem,
bool direct, QWidget * parent = 0, Qt::WFlags f = 0 );
bool direct, QWidget * parent = 0, Qt::WindowFlags f = 0 );

//! Destructor
~QgsGrassModuleStandardOptions();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassnewmapset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ bool QgsGrassNewMapset::mRunning = false;

QgsGrassNewMapset::QgsGrassNewMapset( QgisInterface *iface,
QgsGrassPlugin *plugin, QWidget * parent,
Qt::WFlags f ) :
Qt::WindowFlags f ) :
QWizard( parent, f ),
QgsGrassNewMapsetBase( )
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassnewmapset.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class QgsGrassNewMapset : public QWizard, private Ui::QgsGrassNewMapsetBase
//! Constructor
QgsGrassNewMapset( QgisInterface *iface,
QgsGrassPlugin *plugin,
QWidget * parent = 0, Qt::WFlags f = 0 );
QWidget * parent = 0, Qt::WindowFlags f = 0 );

//! Destructor
~QgsGrassNewMapset();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassregion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void QgsGrassRegionEdit::setSrcRegion( const QgsRectangle &rect )
}

QgsGrassRegion::QgsGrassRegion( QgsGrassPlugin *plugin, QgisInterface *iface,
QWidget * parent, Qt::WFlags f )
QWidget * parent, Qt::WindowFlags f )
: QDialog( parent, f ), QgsGrassRegionBase( )
{
QgsDebugMsg( "QgsGrassRegion()" );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrassregion.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class QgsGrassRegion: public QDialog, private Ui::QgsGrassRegionBase
public:
//! Constructor
QgsGrassRegion( QgsGrassPlugin *plugin, QgisInterface *iface,
QWidget * parent = 0, Qt::WFlags f = 0 );
QWidget * parent = 0, Qt::WindowFlags f = 0 );

//! Destructor
~QgsGrassRegion();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrasstools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@


QgsGrassTools::QgsGrassTools( QgisInterface *iface,
QWidget * parent, const char * name, Qt::WFlags f )
QWidget * parent, const char * name, Qt::WindowFlags f )
: QDialog( parent, f ), QgsGrassToolsBase()
, mBrowser( 0 )
, mModulesListModel( 0 ), mModelProxy( 0 ), mDirectModulesListModel( 0 ), mDirectModelProxy( 0 )
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/grass/qgsgrasstools.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class QgsGrassTools: public QDialog, private Ui::QgsGrassToolsBase
public:
//! Constructor
QgsGrassTools( QgisInterface *iface,
QWidget * parent = 0, const char * name = 0, Qt::WFlags f = 0 );
QWidget * parent = 0, const char * name = 0, Qt::WindowFlags f = 0 );

//! Destructor
~QgsGrassTools();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/heatmap/heatmapgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

//standard includes

HeatmapGui::HeatmapGui( QWidget* parent, Qt::WFlags fl, QMap<QString, QVariant>* temporarySettings )
HeatmapGui::HeatmapGui( QWidget* parent, Qt::WindowFlags fl, QMap<QString, QVariant>* temporarySettings )
: QDialog( parent, fl ),
mRows( 500 )
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/heatmap/heatmapgui.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class HeatmapGui : public QDialog, private Ui::HeatmapGuiBase
{
Q_OBJECT
public:
HeatmapGui( QWidget* parent, Qt::WFlags fl, QMap<QString, QVariant>* temporarySettings );
HeatmapGui( QWidget* parent, Qt::WindowFlags fl, QMap<QString, QVariant>* temporarySettings );
~HeatmapGui();

// Buffer unit type
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/offline_editing/offline_editing_plugin_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <QMessageBox>
#include <QSettings>

QgsOfflineEditingPluginGui::QgsOfflineEditingPluginGui( QWidget* parent /*= 0*/, Qt::WFlags fl /*= 0*/ )
QgsOfflineEditingPluginGui::QgsOfflineEditingPluginGui( QWidget* parent /*= 0*/, Qt::WindowFlags fl /*= 0*/ )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/offline_editing/offline_editing_plugin_gui.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class QgsOfflineEditingPluginGui : public QDialog, private Ui::QgsOfflineEditing
Q_OBJECT

public:
QgsOfflineEditingPluginGui( QWidget* parent = 0, Qt::WFlags fl = 0 );
QgsOfflineEditingPluginGui( QWidget* parent = 0, Qt::WindowFlags fl = 0 );
virtual ~QgsOfflineEditingPluginGui();

QString offlineDataPath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "offline_editing_progress_dialog.h"

QgsOfflineEditingProgressDialog::QgsOfflineEditingProgressDialog( QWidget* parent /*= 0*/, Qt::WFlags fl /*= 0*/ )
QgsOfflineEditingProgressDialog::QgsOfflineEditingProgressDialog( QWidget* parent /*= 0*/, Qt::WindowFlags fl /*= 0*/ )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class QgsOfflineEditingProgressDialog : public QDialog, private Ui::QgsOfflineEd
Q_OBJECT

public:
QgsOfflineEditingProgressDialog( QWidget* parent = 0, Qt::WFlags fl = 0 );
QgsOfflineEditingProgressDialog( QWidget* parent = 0, Qt::WindowFlags fl = 0 );
virtual ~QgsOfflineEditingProgressDialog();

void setTitle( const QString& title );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/oracle_raster/qgsoracleconnect_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

QgsOracleConnect::QgsOracleConnect( QWidget* parent,
const QString& connName,
Qt::WFlags fl ) : QDialog( parent, fl )
Qt::WindowFlags fl ) : QDialog( parent, fl )
{
setupUi( this );

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/oracle_raster/qgsoracleconnect_ui.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class QgsOracleConnect : public QDialog, private Ui::OracleConnectGuiBase
public:
QgsOracleConnect( QWidget* parent = 0,
const QString& connName = QString::null,
Qt::WFlags fl = QgisGui::ModalDialogFlags );
Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
~QgsOracleConnect();

private:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/oracle_raster/qgsselectgeoraster_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

QgsOracleSelectGeoraster::QgsOracleSelectGeoraster( QWidget* parent,
QgisInterface* iface,
Qt::WFlags fl ) : QDialog( parent, fl ), mIface( iface )
Qt::WindowFlags fl ) : QDialog( parent, fl ), mIface( iface )
{
setupUi( this );

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/oracle_raster/qgsselectgeoraster_ui.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class QgsOracleSelectGeoraster : public QDialog, private Ui::SelectGeoRasterBase
Q_OBJECT

public:
QgsOracleSelectGeoraster( QWidget* parent, QgisInterface* iface, Qt::WFlags fl = 0 );
QgsOracleSelectGeoraster( QWidget* parent, QgisInterface* iface, Qt::WindowFlags fl = 0 );
~QgsOracleSelectGeoraster();

private:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/plugin_template/plugingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

//standard includes

[pluginname]Gui::[pluginname]Gui( QWidget* parent, Qt::WFlags fl )
[pluginname]Gui::[pluginname]Gui( QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/plugin_template/plugingui.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class [pluginname]Gui : public QDialog, private Ui::[pluginname]GuiBase
{
Q_OBJECT
public:
[pluginname]Gui( QWidget* parent = 0, Qt::WFlags fl = 0 );
[pluginname]Gui( QWidget* parent = 0, Qt::WindowFlags fl = 0 );
~[pluginname]Gui();

private:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/roadgraph/exportdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

//standard includes

RgExportDlg::RgExportDlg( QWidget* parent, Qt::WFlags fl )
RgExportDlg::RgExportDlg( QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
// create base widgets;
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/roadgraph/exportdlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class RgExportDlg : public QDialog
{
Q_OBJECT
public:
RgExportDlg( QWidget* parent = 0, Qt::WFlags fl = 0 );
RgExportDlg( QWidget* parent = 0, Qt::WindowFlags fl = 0 );
~RgExportDlg();

public:
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/roadgraph/settingsdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

//standard includes

RgSettingsDlg::RgSettingsDlg( RgSettings *settings, QWidget* parent, Qt::WFlags fl )
RgSettingsDlg::RgSettingsDlg( RgSettings *settings, QWidget* parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
, mSettings( settings )
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/roadgraph/settingsdlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class RgSettingsDlg : public QDialog
{
Q_OBJECT
public:
RgSettingsDlg( RgSettings *settings, QWidget* parent = 0, Qt::WFlags fl = 0 );
RgSettingsDlg( RgSettings *settings, QWidget* parent = 0, Qt::WindowFlags fl = 0 );
~RgSettingsDlg();

QString timeUnitName();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/spit/qgsspit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "qgslogger.h"


QgsSpit::QgsSpit( QWidget *parent, Qt::WFlags fl ) : QDialog( parent, fl )
QgsSpit::QgsSpit( QWidget *parent, Qt::WindowFlags fl ) : QDialog( parent, fl )
{
setupUi( this );

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/spit/qgsspit.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class QgsSpit : public QDialog, private Ui::QgsSpitBase
{
Q_OBJECT
public:
QgsSpit( QWidget *parent = 0, Qt::WFlags fl = 0 );
QgsSpit( QWidget *parent = 0, Qt::WindowFlags fl = 0 );
~QgsSpit();
//! Populate the list of available database connections
void populateConnectionList();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/sqlanywhere/sanewconnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "qgslogger.h"
#include "qgscredentialdialog.h"

SaNewConnection::SaNewConnection( QWidget *parent, const QString& connName, Qt::WFlags fl )
SaNewConnection::SaNewConnection( QWidget *parent, const QString& connName, Qt::WindowFlags fl )
: QDialog( parent, fl ), mOriginalConnName( connName )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/sqlanywhere/sanewconnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SaNewConnection : public QDialog, private Ui::SaNewConnectionBase
Q_OBJECT
public:
//! Constructor
SaNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WFlags fl = QgisGui::ModalDialogFlags );
SaNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~SaNewConnection();
//! Tests the connection using the parameters supplied
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/sqlanywhere/sasourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ quotedIdentifier( QString id )
} // quotedIdentifier()


SaSourceSelect::SaSourceSelect( QWidget *parent, Qt::WFlags fl )
SaSourceSelect::SaSourceSelect( QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl ), mColumnTypeThread( NULL )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/sqlanywhere/sasourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class SaSourceSelect : public QDialog, private Ui::SaSourceSelectBase
public:

//! Constructor
SaSourceSelect( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags );
SaSourceSelect( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~SaSourceSelect();
//! Populate the connection list combo box
Expand Down
2 changes: 1 addition & 1 deletion src/providers/delimitedtext/qgsdelimitedtextprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ QGISEXTERN bool isProvider()
return true;
}

QGISEXTERN QgsDelimitedTextSourceSelect *selectWidget( QWidget *parent, Qt::WFlags fl )
QGISEXTERN QgsDelimitedTextSourceSelect *selectWidget( QWidget *parent, Qt::WindowFlags fl )
{
return new QgsDelimitedTextSourceSelect( parent, fl );
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

const int MAX_SAMPLE_LENGTH = 200;

QgsDelimitedTextSourceSelect::QgsDelimitedTextSourceSelect( QWidget * parent, Qt::WFlags fl, bool embedded ):
QgsDelimitedTextSourceSelect::QgsDelimitedTextSourceSelect( QWidget * parent, Qt::WindowFlags fl, bool embedded ):
QDialog( parent, fl ),
mFile( new QgsDelimitedTextFile() ),
mExampleRowCount( 20 ),
Expand Down
2 changes: 1 addition & 1 deletion src/providers/delimitedtext/qgsdelimitedtextsourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class QgsDelimitedTextSourceSelect : public QDialog, private Ui::QgsDelimitedTex
Q_OBJECT

public:
QgsDelimitedTextSourceSelect( QWidget * parent, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool embedded = false );
QgsDelimitedTextSourceSelect( QWidget * parent, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool embedded = false );
~QgsDelimitedTextSourceSelect();

QStringList splitLine( QString line );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/mssql/qgsmssqlnewconnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "qgsmssqlprovider.h"
#include "qgscontexthelp.h"

QgsMssqlNewConnection::QgsMssqlNewConnection( QWidget *parent, const QString& connName, Qt::WFlags fl )
QgsMssqlNewConnection::QgsMssqlNewConnection( QWidget *parent, const QString& connName, Qt::WindowFlags fl )
: QDialog( parent, fl ), mOriginalConnName( connName )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/mssql/qgsmssqlnewconnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class QgsMssqlNewConnection : public QDialog, private Ui::QgsMssqlNewConnectionB
Q_OBJECT
public:
//! Constructor
QgsMssqlNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsMssqlNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsMssqlNewConnection();
//! Tests the connection using the parameters supplied
Expand Down
2 changes: 1 addition & 1 deletion src/providers/mssql/qgsmssqlprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1803,7 +1803,7 @@ QGISEXTERN bool isProvider()
return true;
}

QGISEXTERN void *selectWidget( QWidget *parent, Qt::WFlags fl )
QGISEXTERN void *selectWidget( QWidget *parent, Qt::WindowFlags fl )
{
return new QgsMssqlSourceSelect( parent, fl );
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/mssql/qgsmssqlsourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void QgsMssqlSourceSelectDelegate::setModelData( QWidget *editor, QAbstractItemM
model->setData( index, le->text() );
}

QgsMssqlSourceSelect::QgsMssqlSourceSelect( QWidget *parent, Qt::WFlags fl, bool managerMode, bool embeddedMode )
QgsMssqlSourceSelect::QgsMssqlSourceSelect( QWidget *parent, Qt::WindowFlags fl, bool managerMode, bool embeddedMode )
: QDialog( parent, fl )
, mManagerMode( managerMode )
, mEmbeddedMode( embeddedMode )
Expand Down
2 changes: 1 addition & 1 deletion src/providers/mssql/qgsmssqlsourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class QgsMssqlSourceSelect : public QDialog, private Ui::QgsDbSourceSelectBase
static void deleteConnection( QString key );

//! Constructor
QgsMssqlSourceSelect( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
QgsMssqlSourceSelect( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsMssqlSourceSelect();
//! Populate the connection list combo box
Expand Down
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoraclenewconnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "qgsdatasourceuri.h"
#include "qgsoracletablemodel.h"

QgsOracleNewConnection::QgsOracleNewConnection( QWidget *parent, const QString& connName, Qt::WFlags fl )
QgsOracleNewConnection::QgsOracleNewConnection( QWidget *parent, const QString& connName, Qt::WindowFlags fl )
: QDialog( parent, fl ), mOriginalConnName( connName )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoraclenewconnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class QgsOracleNewConnection : public QDialog, private Ui::QgsOracleNewConnectio
Q_OBJECT
public:
//! Constructor
QgsOracleNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsOracleNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsOracleNewConnection();
public slots:
Expand Down
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoracleprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2835,7 +2835,7 @@ QGISEXTERN bool isProvider()
return true;
}

QGISEXTERN QgsOracleSourceSelect *selectWidget( QWidget *parent, Qt::WFlags fl )
QGISEXTERN QgsOracleSourceSelect *selectWidget( QWidget *parent, Qt::WindowFlags fl )
{
return new QgsOracleSourceSelect( parent, fl );
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoraclesourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void QgsOracleSourceSelectDelegate::setModelData( QWidget *editor, QAbstractItem
}
}

QgsOracleSourceSelect::QgsOracleSourceSelect( QWidget *parent, Qt::WFlags fl, bool managerMode, bool embeddedMode )
QgsOracleSourceSelect::QgsOracleSourceSelect( QWidget *parent, Qt::WindowFlags fl, bool managerMode, bool embeddedMode )
: QDialog( parent, fl )
, mManagerMode( managerMode )
, mEmbeddedMode( embeddedMode )
Expand Down
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoraclesourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class QgsOracleSourceSelect : public QDialog, private Ui::QgsDbSourceSelectBase

public:
//! Constructor
QgsOracleSourceSelect( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
QgsOracleSourceSelect( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsOracleSourceSelect();
//! Populate the connection list combo box
Expand Down
4 changes: 2 additions & 2 deletions src/providers/ows/qgsowsdataitems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ QGISEXTERN QgsDataItem * dataItem( QString thePath, QgsDataItem* parentItem )
return 0;
}

//QGISEXTERN QgsOWSSourceSelect * selectWidget( QWidget * parent, Qt::WFlags fl )
QGISEXTERN QDialog * selectWidget( QWidget * parent, Qt::WFlags fl )
//QGISEXTERN QgsOWSSourceSelect * selectWidget( QWidget * parent, Qt::WindowFlags fl )
QGISEXTERN QDialog * selectWidget( QWidget * parent, Qt::WindowFlags fl )
{
Q_UNUSED( parent );
Q_UNUSED( fl );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspgnewconnection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "qgsdatasourceuri.h"
#include "qgspostgresconn.h"

QgsPgNewConnection::QgsPgNewConnection( QWidget *parent, const QString& connName, Qt::WFlags fl )
QgsPgNewConnection::QgsPgNewConnection( QWidget *parent, const QString& connName, Qt::WindowFlags fl )
: QDialog( parent, fl ), mOriginalConnName( connName )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspgnewconnection.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class QgsPgNewConnection : public QDialog, private Ui::QgsPgNewConnectionBase
Q_OBJECT
public:
//! Constructor
QgsPgNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WFlags fl = QgisGui::ModalDialogFlags );
QgsPgNewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsPgNewConnection();
//! Tests the connection using the parameters supplied
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspgsourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ void QgsPgSourceSelectDelegate::setModelData( QWidget *editor, QAbstractItemMode
}
}

QgsPgSourceSelect::QgsPgSourceSelect( QWidget *parent, Qt::WFlags fl, bool managerMode, bool embeddedMode )
QgsPgSourceSelect::QgsPgSourceSelect( QWidget *parent, Qt::WindowFlags fl, bool managerMode, bool embeddedMode )
: QDialog( parent, fl )
, mManagerMode( managerMode )
, mEmbeddedMode( embeddedMode )
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspgsourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class QgsPgSourceSelect : public QDialog, private Ui::QgsDbSourceSelectBase

public:
//! Constructor
QgsPgSourceSelect( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
QgsPgSourceSelect( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsPgSourceSelect();
//! Populate the connection list combo box
Expand Down
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3179,7 +3179,7 @@ QGISEXTERN bool isProvider()
return true;
}

QGISEXTERN QgsPgSourceSelect *selectWidget( QWidget *parent, Qt::WFlags fl )
QGISEXTERN QgsPgSourceSelect *selectWidget( QWidget *parent, Qt::WindowFlags fl )
{
return new QgsPgSourceSelect( parent, fl );
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/spatialite/qgsspatialitedataitems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void QgsSLRootItem::createDatabase()

// ---------------------------------------------------------------------------

QGISEXTERN QgsSpatiaLiteSourceSelect * selectWidget( QWidget * parent, Qt::WFlags fl )
QGISEXTERN QgsSpatiaLiteSourceSelect * selectWidget( QWidget * parent, Qt::WindowFlags fl )
{
// TODO: this should be somewhere else
return new QgsSpatiaLiteSourceSelect( parent, fl, false );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/spatialite/qgsspatialitesourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ email : a.furieri@lqt.it
#define strcasecmp(a,b) stricmp(a,b)
#endif

QgsSpatiaLiteSourceSelect::QgsSpatiaLiteSourceSelect( QWidget * parent, Qt::WFlags fl, bool embedded ):
QgsSpatiaLiteSourceSelect::QgsSpatiaLiteSourceSelect( QWidget * parent, Qt::WindowFlags fl, bool embedded ):
QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/spatialite/qgsspatialitesourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class QgsSpatiaLiteSourceSelect: public QDialog, private Ui::QgsDbSourceSelectBa
static bool newConnection( QWidget* parent );

//! Constructor
QgsSpatiaLiteSourceSelect( QWidget * parent, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool embedded = false );
QgsSpatiaLiteSourceSelect( QWidget * parent, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool embedded = false );
//! Destructor
~QgsSpatiaLiteSourceSelect();
//! Populate the connection list combo box
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wcs/qgswcsdataitems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ QGISEXTERN QgsDataItem * dataItem( QString thePath, QgsDataItem* parentItem )
return new QgsWCSConnectionItem( parentItem, "WCS", thePath );
}

QGISEXTERN QgsWCSSourceSelect * selectWidget( QWidget * parent, Qt::WFlags fl )
QGISEXTERN QgsWCSSourceSelect * selectWidget( QWidget * parent, Qt::WindowFlags fl )
{
return new QgsWCSSourceSelect( parent, fl );
}
2 changes: 1 addition & 1 deletion src/providers/wcs/qgswcssourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include <QWidget>

QgsWCSSourceSelect::QgsWCSSourceSelect( QWidget * parent, Qt::WFlags fl, bool managerMode, bool embeddedMode )
QgsWCSSourceSelect::QgsWCSSourceSelect( QWidget * parent, Qt::WindowFlags fl, bool managerMode, bool embeddedMode )
: QgsOWSSourceSelect( "WCS", parent, fl, managerMode, embeddedMode )
{
// Hide irrelevant widgets
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wcs/qgswcssourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class QgsWCSSourceSelect : public QgsOWSSourceSelect

public:
//! Constructor
QgsWCSSourceSelect( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
QgsWCSSourceSelect( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsWCSSourceSelect();

Expand Down
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsdataitems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ void QgsWFSRootItem::newConnection()

// ---------------------------------------------------------------------------

QGISEXTERN QgsWFSSourceSelect * selectWidget( QWidget * parent, Qt::WFlags fl )
QGISEXTERN QgsWFSSourceSelect * selectWidget( QWidget * parent, Qt::WindowFlags fl )
{
return new QgsWFSSourceSelect( parent, fl );
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfssourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <QPainter>


QgsWFSSourceSelect::QgsWFSSourceSelect( QWidget* parent, Qt::WFlags fl, bool embeddedMode )
QgsWFSSourceSelect::QgsWFSSourceSelect( QWidget* parent, Qt::WindowFlags fl, bool embeddedMode )
: QDialog( parent, fl )
, mCapabilities( NULL )
{
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfssourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class QgsWFSSourceSelect: public QDialog, private Ui::QgsWFSSourceSelectBase

public:

QgsWFSSourceSelect( QWidget* parent, Qt::WFlags fl, bool embeddedMode = false );
QgsWFSSourceSelect( QWidget* parent, Qt::WindowFlags fl, bool embeddedMode = false );
~QgsWFSSourceSelect();

signals:
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmsdataitems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ QGISEXTERN void registerGui( QMainWindow *mainWindow )
QgsTileScaleWidget::showTileScale( mainWindow );
}

QGISEXTERN QgsWMSSourceSelect * selectWidget( QWidget * parent, Qt::WFlags fl )
QGISEXTERN QgsWMSSourceSelect * selectWidget( QWidget * parent, Qt::WindowFlags fl )
{
return new QgsWMSSourceSelect( parent, fl );
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmssourceselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
#include <QNetworkRequest>
#include <QNetworkReply>

QgsWMSSourceSelect::QgsWMSSourceSelect( QWidget * parent, Qt::WFlags fl, bool managerMode, bool embeddedMode )
QgsWMSSourceSelect::QgsWMSSourceSelect( QWidget * parent, Qt::WindowFlags fl, bool managerMode, bool embeddedMode )
: QDialog( parent, fl )
, mManagerMode( managerMode )
, mEmbeddedMode( embeddedMode )
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmssourceselect.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class QgsWMSSourceSelect : public QDialog, private Ui::QgsWMSSourceSelectBase

public:
//! Constructor
QgsWMSSourceSelect( QWidget *parent = 0, Qt::WFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
QgsWMSSourceSelect( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsWMSSourceSelect();

Expand Down
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmtsdimensions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <QSettings>
#include <QComboBox>

QgsWmtsDimensions::QgsWmtsDimensions( const QgsWmtsTileLayer &layer, QWidget *parent, Qt::WFlags fl )
QgsWmtsDimensions::QgsWmtsDimensions( const QgsWmtsTileLayer &layer, QWidget *parent, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
setupUi( this );
Expand Down
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmtsdimensions.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class QgsWmtsDimensions : public QDialog, private Ui::QgsWmtsDimensionsBase

public:
//! Constructor
QgsWmtsDimensions( const QgsWmtsTileLayer &layer, QWidget *parent = 0, Qt::WFlags fl = 0 );
QgsWmtsDimensions( const QgsWmtsTileLayer &layer, QWidget *parent = 0, Qt::WindowFlags fl = 0 );
//! Destructor
~QgsWmtsDimensions();

Expand Down