NOISSUE Revert all recent changes to NetAction and NetJob

This commit is contained in:
Petr Mrázek
2017-05-03 23:11:52 +02:00
parent 0efa714ba5
commit e76e6329cd
45 changed files with 356 additions and 338 deletions

View File

@ -21,12 +21,12 @@ Task::Task(QObject *parent) : QObject(parent)
{
}
void Task::setStatusText(const QString &new_status)
void Task::setStatus(const QString &new_status)
{
if(m_statusText != new_status)
if(m_status != new_status)
{
m_statusText = new_status;
emit status(m_statusText);
m_status = new_status;
emit status(m_status);
}
}