From: <si...@us...> - 2013-06-13 19:52:03
|
Revision: 1324 http://sourceforge.net/p/qterm/code/1324 Author: sidos Date: 2013-06-13 19:52:00 +0000 (Thu, 13 Jun 2013) Log Message: ----------- fix signal name of QNetworkReply Modified Paths: -------------- trunk/qterm/src/qtermhttp.cpp Modified: trunk/qterm/src/qtermhttp.cpp =================================================================== --- trunk/qterm/src/qtermhttp.cpp 2013-06-13 18:48:43 UTC (rev 1323) +++ trunk/qterm/src/qtermhttp.cpp 2013-06-13 19:52:00 UTC (rev 1324) @@ -72,7 +72,7 @@ m_httpReply = m_httpDown.get(QNetworkRequest(u)); connect(m_httpReply, SIGNAL(finished()), this, SLOT(httpDone())); - connect(m_httpReply, SIGNAL(dataReadProgress(qint64, qint64)), + connect(m_httpReply, SIGNAL(downloadProgress(qint64, qint64)), this, SLOT(httpRead(qint64, qint64))); connect(m_httpReply, SIGNAL(metaDataChanged()), this, SLOT(httpHeader())); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |