From 11b7655bb103974d3a855d64dc0b6ec1b0df4ba1 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 11 Mar 2010 19:32:01 +0000 Subject: reapplied previous patch git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1620 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Transports/http/streamreader.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/plugins/Transports/http/streamreader.cpp') diff --git a/src/plugins/Transports/http/streamreader.cpp b/src/plugins/Transports/http/streamreader.cpp index de3193315..d1fe6d84a 100644 --- a/src/plugins/Transports/http/streamreader.cpp +++ b/src/plugins/Transports/http/streamreader.cpp @@ -37,7 +37,7 @@ StreamReader::~StreamReader() bool StreamReader::atEnd () const { - return FALSE; + return false; } qint64 StreamReader::bytesAvailable () const @@ -52,7 +52,7 @@ qint64 StreamReader::bytesToWrite () const bool StreamReader::canReadLine () const { - return FALSE; + return false; } void StreamReader::close () @@ -68,13 +68,13 @@ bool StreamReader::isSequential () const bool StreamReader::open ( OpenMode mode ) { if (mode != QIODevice::ReadOnly) - return FALSE; + return false; //downloadFile(); setOpenMode(QIODevice::ReadOnly); if (m_downloader->isReady()) return true; else - return FALSE; + return false; } bool StreamReader::reset () @@ -86,7 +86,7 @@ bool StreamReader::reset () bool StreamReader::seek ( qint64 pos ) { QIODevice::seek(pos); - return FALSE; + return false; } qint64 StreamReader::size () const -- cgit v1.2.3-13-gbd6f