You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
482 B
14 lines
482 B
void foo()
|
|
{
|
|
QObject::connect(m_NetworkReply,
|
|
SIGNAL(error(QNetworkReply::NetworkError)),
|
|
this,
|
|
SLOT(NetworkReplyError(QNetworkReply::NetworkError)));
|
|
QObject::connect(m_NetworkReply,
|
|
SIGNAL(uploadProgress(qint64, qint64)),
|
|
this,
|
|
SLOT(NetworkReplyUploadProgress(qint64, qint64)));
|
|
connect(&m_SendReportThread, SIGNAL(ProgressChanged(size_t, size_t)),
|
|
SLOT(OnReportProgressChanged(size_t, size_t)));
|
|
}
|