forked from len0rd/rockbox
Remove HttpGet::error() function.
This function returns an internal enum value of QHttp (which is also deprecated). It was only used for showing an error to the user / showing it in the system trace. Since it is an enum value it doesn't have much value. Log / show the error string instead. Change-Id: I54b9b6026969f8108f779b02a04477f0ad9201ab
This commit is contained in:
parent
4307f95a1f
commit
d608fd604b
4 changed files with 4 additions and 14 deletions
|
|
@ -80,7 +80,7 @@ void BootloaderInstallBase::downloadBlFinish(bool error)
|
|||
}
|
||||
if(error) {
|
||||
emit logItem(tr("Download error: %1")
|
||||
.arg(m_http.error()), LOGERROR);
|
||||
.arg(m_http.errorString()), LOGERROR);
|
||||
emit done(true);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -118,15 +118,6 @@ QByteArray HttpGet::readAll()
|
|||
}
|
||||
|
||||
|
||||
/** @brief get http error
|
||||
* @return http error
|
||||
*/
|
||||
QHttp::Error HttpGet::error()
|
||||
{
|
||||
return http.error();
|
||||
}
|
||||
|
||||
|
||||
void HttpGet::setProxy(const QUrl &proxy)
|
||||
{
|
||||
m_proxy = proxy;
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ class HttpGet : public QObject
|
|||
bool getFile(const QUrl &url);
|
||||
void setProxy(const QUrl &url);
|
||||
void setProxy(bool);
|
||||
QHttp::Error error(void);
|
||||
QString errorString(void);
|
||||
void setFile(QFile*);
|
||||
void setCache(const QDir&);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue