diff options
author | Arno <arno@disconnect.de> | 2022-04-16 02:20:43 +0200 |
---|---|---|
committer | Arno <arno@d-tor.org> | 2022-04-16 05:05:19 +0200 |
commit | a354d3cfc491f34107d712de4f4216f1e4f35098 (patch) | |
tree | 116085717f4cdefb41f926e12ed225c05327cd3e /filedisplay.h | |
parent | 980f94e493c349c6c86f1b3d05753ce3cfba38d8 (diff) | |
download | ShemovCleaner-a354d3cfc491f34107d712de4f4216f1e4f35098.tar.gz ShemovCleaner-a354d3cfc491f34107d712de4f4216f1e4f35098.tar.bz2 ShemovCleaner-a354d3cfc491f34107d712de4f4216f1e4f35098.zip |
Make it compile with qt6
*BIG FAT WARNING*
Took me a while to figure it out, but the database connection only works
with MINGW64 instead of MINGW32! With the latter loading the SQL Plugin
fails! That said, off to brighter shores :)
Diffstat (limited to 'filedisplay.h')
-rw-r--r-- | filedisplay.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filedisplay.h b/filedisplay.h index 284c06d..822c502 100644 --- a/filedisplay.h +++ b/filedisplay.h @@ -15,7 +15,7 @@ class FileData; class FileDisplay : public QDialog { Q_OBJECT public: - explicit FileDisplay(QWidget *parent = nullptr, Qt::WindowFlags f = nullptr); + explicit FileDisplay(QWidget *parent = nullptr); ~FileDisplay(); void setFileData(const QString &fullPath, const QString &md5Sum); @@ -31,7 +31,7 @@ class FileDisplay : public QDialog { class DBData : public QWidget { Q_OBJECT public: - explicit DBData(QWidget *parent = nullptr, Qt::WindowFlags f = nullptr); + explicit DBData(QWidget *parent = nullptr); void setFileData(const QString &fullPath, const QString &md5Sum); private: @@ -46,7 +46,7 @@ class DBData : public QWidget { class FileData : public QWidget { Q_OBJECT public: - explicit FileData(QWidget *parent = nullptr, Qt::WindowFlags f = nullptr); + explicit FileData(QWidget *parent = nullptr); ~FileData(); void setFileData(const QString &fullPath); |