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 /viewer.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 'viewer.h')
-rw-r--r-- | viewer.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ class QLabel; class Viewer : public QWidget {
public:
- Viewer(QWidget *parent = nullptr, Qt::WindowFlags f = nullptr);
+ Viewer(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
void setFile(const QString &file, bool allFiles = true);
void setFiles(const QStringList &files);
void preview(const QString &file);
|