Add override keyword
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user