platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp in rhodes-5.5.15 vs platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp in rhodes-5.5.17
- old
+ new
@@ -180,11 +180,11 @@
stopWait();
LOG(TRACE) + "RHOQT wait-m_waitThread exists after calling stopWait";
}
else
{
- LOG(TRACE) + "RHOQT wait-m_waitThread does not existdo not call stopWait";
+ LOG(TRACE) + "RHOQT wait-m_waitThread does not existdo not call stopWait";
}
LOG(TRACE) + "RHOQT wait-before m_waitThread->start";
m_waitThread = new QThread();
m_waitThread->start();
@@ -192,18 +192,18 @@
bool result;
if(isVeyBigTimeoutvalue)
{
- LOG(INFO) + "RHOQT wait-before wait for a long time nTimeoutMs:- "+nTimeoutMs;
- result = m_waitThread->wait(1000UL*nTimeoutMs) ? 0 : 1;
- LOG(INFO) + "RHOQT wait-after wait for a long time Result:- "+result;
+ LOG(INFO) + "RHOQT wait-before wait for a long time nTimeoutMs:- "+nTimeoutMs;
+ result = m_waitThread->wait(1000UL*nTimeoutMs) ? 0 : 1;
+ LOG(INFO) + "RHOQT wait-after wait for a long time Result:- "+result;
}
else
{
- LOG(INFO) + "RHOQT wait-before wait for a short time nTimeoutMs:- "+nTimeoutMs;
- result = m_waitThread->wait(1UL*nTimeoutMs) ? 0 : 1;
- LOG(INFO) + "RHOQT wait-after wait for a short time Result:- "+result;
+ LOG(INFO) + "RHOQT wait-before wait for a short time nTimeoutMs:- "+nTimeoutMs;
+ result = m_waitThread->wait(1UL*nTimeoutMs) ? 0 : 1;
+ LOG(INFO) + "RHOQT wait-after wait for a short time Result:- "+result;
}
if(m_waitThread)
{