refactor: Use override instead of virtual where possible (#4917)
This commit is contained in:
@@ -16,13 +16,12 @@ public:
|
||||
|
||||
protected:
|
||||
// turn a vector item into a model row
|
||||
virtual FilterRecordPtr getItemFromRow(
|
||||
std::vector<QStandardItem *> &row,
|
||||
const FilterRecordPtr &original) override;
|
||||
FilterRecordPtr getItemFromRow(std::vector<QStandardItem *> &row,
|
||||
const FilterRecordPtr &original) override;
|
||||
|
||||
// turns a row in the model into a vector item
|
||||
virtual void getRowFromItem(const FilterRecordPtr &item,
|
||||
std::vector<QStandardItem *> &row) override;
|
||||
void getRowFromItem(const FilterRecordPtr &item,
|
||||
std::vector<QStandardItem *> &row) override;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
|
||||
Reference in New Issue
Block a user