diff options
author | Arno <arno@disconnect.de> | 2020-07-19 12:36:48 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2020-07-19 12:36:48 +0200 |
commit | 4c3d6d9e620df68cdbb4a497a47bb8002ccc2e34 (patch) | |
tree | bcccbc272d1ec378659c578e31d35301d8264735 /filepropertiesdialog.h | |
parent | f2c94a38a333884a7f5d49a4b11273a5682af4e4 (diff) | |
download | SheMov-4c3d6d9e620df68cdbb4a497a47bb8002ccc2e34.tar.gz SheMov-4c3d6d9e620df68cdbb4a497a47bb8002ccc2e34.tar.bz2 SheMov-4c3d6d9e620df68cdbb4a497a47bb8002ccc2e34.zip |
Fix Qt::Windowflags nullptr deprecation warnings
Diffstat (limited to 'filepropertiesdialog.h')
-rw-r--r-- | filepropertiesdialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filepropertiesdialog.h b/filepropertiesdialog.h index 9d8b7da..b8389f7 100644 --- a/filepropertiesdialog.h +++ b/filepropertiesdialog.h @@ -18,7 +18,7 @@ class QLabel; class FilePropertiesDialog : public SmDialog { Q_OBJECT public: - explicit FilePropertiesDialog(const QString &file, QWidget *parent = nullptr, Qt::WindowFlags f = nullptr); + explicit FilePropertiesDialog(const QString &file, QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags()); private: void movieData(); |