mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-25 18:56:34 +03:00
Remove redundant virtual
specifier
This commit is contained in:
parent
2059825597
commit
5b43782f58
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ public:
|
|||
private:
|
||||
// scale bitfield vector to float vector
|
||||
QVector<float> bitfieldToFloatVector(const QBitArray &vecin, int reqSize);
|
||||
virtual bool updateImage(QImage &image) override;
|
||||
bool updateImage(QImage &image) override;
|
||||
QString simpleToolTipText() const override;
|
||||
|
||||
// incomplete piece color
|
||||
|
|
|
@ -55,7 +55,7 @@ public:
|
|||
virtual void clear();
|
||||
|
||||
// QObject interface
|
||||
virtual bool event(QEvent *e) override;
|
||||
bool event(QEvent *e) override;
|
||||
|
||||
protected:
|
||||
// QWidget interface
|
||||
|
|
Loading…
Reference in a new issue