diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2019-01-06 19:27:03 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2019-01-06 19:27:03 +0000 |
| commit | 8a6f982632b4f4710576685a5647a771384ab29a (patch) | |
| tree | 9ca763e18279d42aa4c7b29530612768db1bbf01 /src/plugins/Transports/http/httpstreamreader.h | |
| parent | 1b0fef3d25ed94518f4f6b1914a7d7e71aae80c5 (diff) | |
| download | qmmp-8a6f982632b4f4710576685a5647a771384ab29a.tar.gz qmmp-8a6f982632b4f4710576685a5647a771384ab29a.tar.bz2 qmmp-8a6f982632b4f4710576685a5647a771384ab29a.zip | |
using override keyword
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8591 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Transports/http/httpstreamreader.h')
| -rw-r--r-- | src/plugins/Transports/http/httpstreamreader.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/plugins/Transports/http/httpstreamreader.h b/src/plugins/Transports/http/httpstreamreader.h index ebb0a657e..e63220525 100644 --- a/src/plugins/Transports/http/httpstreamreader.h +++ b/src/plugins/Transports/http/httpstreamreader.h @@ -66,13 +66,13 @@ public: /** * QIODevice API */ - bool atEnd () const; - qint64 bytesAvailable () const; - qint64 bytesToWrite () const; - void close (); - bool isSequential () const; - bool open (OpenMode mode); - bool seek (qint64 pos); + bool atEnd () const override; + qint64 bytesAvailable () const override; + qint64 bytesToWrite () const override; + void close () override; + bool isSequential () const override; + bool open (OpenMode mode) override; + bool seek (qint64 pos) override; /** * helper functions */ @@ -88,8 +88,8 @@ signals: void error(); protected: - qint64 readData(char*, qint64); - qint64 writeData(const char*, qint64); + qint64 readData(char*, qint64) override; + qint64 writeData(const char*, qint64) override; private: void abort(); @@ -124,7 +124,7 @@ public: virtual ~DownloadThread (); private: - virtual void run(); + virtual void run() override; HttpStreamReader *m_parent; }; |
