提交 709ac991 编写于 作者: 丁劲犇's avatar 丁劲犇 😸

Improved Message Format in urlDownloader

上级 5492e69d
......@@ -115,6 +115,8 @@ namespace QTVOSM{
{
m_listTask.removeAll(tk);
m_listTask.push_front(tk);
QString strMsg = tr("Bring task %1 to front.").arg(sourceUrl);
emit evt_message(strMsg);
}
}
else
......@@ -126,11 +128,12 @@ namespace QTVOSM{
m_listTask.push_front(tk);
else
m_listTask.push_back(tk);
QString strMsg = tr("Add task %1").arg(sourceUrl);
emit evt_message(strMsg);
}
m_mutex_protect.unlock();
if (bNeedEmit)
emit evt_doNextJob();
QString strMsg = tr("Add task %1").arg(sourceUrl);
emit evt_message(strMsg);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册