mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 05:48:47 +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:
|
private:
|
||||||
// scale bitfield vector to float vector
|
// scale bitfield vector to float vector
|
||||||
QVector<float> bitfieldToFloatVector(const QBitArray &vecin, int reqSize);
|
QVector<float> bitfieldToFloatVector(const QBitArray &vecin, int reqSize);
|
||||||
virtual bool updateImage(QImage &image) override;
|
bool updateImage(QImage &image) override;
|
||||||
QString simpleToolTipText() const override;
|
QString simpleToolTipText() const override;
|
||||||
|
|
||||||
// incomplete piece color
|
// incomplete piece color
|
||||||
|
|
|
@ -55,7 +55,7 @@ public:
|
||||||
virtual void clear();
|
virtual void clear();
|
||||||
|
|
||||||
// QObject interface
|
// QObject interface
|
||||||
virtual bool event(QEvent *e) override;
|
bool event(QEvent *e) override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// QWidget interface
|
// QWidget interface
|
||||||
|
|
Loading…
Reference in a new issue