diff options
Diffstat (limited to 'src/plugins/Transports/http/downloader.cpp')
| -rw-r--r-- | src/plugins/Transports/http/downloader.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/plugins/Transports/http/downloader.cpp b/src/plugins/Transports/http/downloader.cpp index d7b2077bb..7e3fda2b9 100644 --- a/src/plugins/Transports/http/downloader.cpp +++ b/src/plugins/Transports/http/downloader.cpp @@ -220,10 +220,10 @@ void Downloader::abort() } } -int Downloader::bytesAvailable() +qint64 Downloader::bytesAvailable() { m_mutex.lock(); - int b = m_stream.buf_fill; + qint64 b = m_stream.buf_fill; m_mutex.unlock(); return b; } @@ -308,11 +308,6 @@ qint64 Downloader::readBuffer(char* data, qint64 maxlen) return 0; } -const QString &Downloader::title() const -{ - return m_title; -} - void Downloader::checkBuffer() { if (m_stream.buf_fill > m_buffer_size && !m_ready) |
