Add override keyword
This commit is contained in:
+2
-2
@@ -29,7 +29,7 @@ class FITSFileModel : public QSqlQueryModel
|
||||
QStringList m_value;
|
||||
public:
|
||||
FITSFileModel(QObject *parent = nullptr);
|
||||
void sort(int column, Qt::SortOrder order);
|
||||
void sort(int column, Qt::SortOrder order) override;
|
||||
void setColumns(const QStringList &columns);
|
||||
void setFilter(const QStringList &key, const QStringList &value);
|
||||
protected:
|
||||
@@ -46,7 +46,7 @@ class DataBaseView : public QWidget
|
||||
QLineEdit *m_search[3];
|
||||
public:
|
||||
explicit DataBaseView(Database *database, QWidget *parent = nullptr);
|
||||
~DataBaseView();
|
||||
~DataBaseView() override;
|
||||
public slots:
|
||||
void selectColumns();
|
||||
void loadDatabase();
|
||||
|
||||
Reference in New Issue
Block a user