Add override keyword

This commit is contained in:
2022-05-20 10:33:45 +02:00
parent 571fa57af2
commit b6b6863331
8 changed files with 33 additions and 33 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ class LoadRunable : public QRunnable
bool m_thumbnail;
public:
LoadRunable(const QString &file, Image *receiver, AnalyzeLevel level, bool thumbnail = false);
void run();
void run() override;
};
class ConvertRunable : public QRunnable
@@ -27,7 +27,7 @@ class ConvertRunable : public QRunnable
QString m_outfile;
public:
ConvertRunable(const QString &in, const QString &out);
void run();
void run() override;
};
#endif // LOADRUNABLE_H