This commit is contained in:
liranbg 2014-10-04 03:51:37 +03:00
parent 4f18421506
commit 64f56d78fc

View file

@ -205,11 +205,10 @@ void jceSSLClient::readItAll()
p = read(bytesAvailable()); p = read(bytesAvailable());
if (p.contains("</tbody>") == true) if (p.contains("</tbody>") == true)
{ {
qDebug() << "we have the end!"; //we recieved the end of table. we can stop recieving
timer.setInterval(1000); timer.setInterval(1000);
} }
this->progressBar->setValue(this->progressBar->value() + 6); this->progressBar->setValue(this->progressBar->value() + 6);
// qDebug() << "p lenght" << p.length();
packet.append(p); packet.append(p);
}while (p.size() > 0); }while (p.size() > 0);
} }