Updated the messages
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
parent
f2932c6d03
commit
b3d743635c
@ -56,7 +56,7 @@ class ByteArraySink : public Sink {
|
|||||||
if (m_output)
|
if (m_output)
|
||||||
m_output->clear();
|
m_output->clear();
|
||||||
else
|
else
|
||||||
qWarning() << "ByteArraySink was not cleared because it's not adresable";
|
qWarning() << "ByteArraySink did not initialize the buffer because it's not addressable";
|
||||||
if (initAllValidators(request))
|
if (initAllValidators(request))
|
||||||
return Task::State::Running;
|
return Task::State::Running;
|
||||||
return Task::State::Failed;
|
return Task::State::Failed;
|
||||||
@ -67,7 +67,7 @@ class ByteArraySink : public Sink {
|
|||||||
if (m_output)
|
if (m_output)
|
||||||
m_output->append(data);
|
m_output->append(data);
|
||||||
else
|
else
|
||||||
qWarning() << "ByteArraySink no write because it's not adresable";
|
qWarning() << "ByteArraySink did not write the buffer because it's not addressable";
|
||||||
if (writeAllValidators(data))
|
if (writeAllValidators(data))
|
||||||
return Task::State::Running;
|
return Task::State::Running;
|
||||||
return Task::State::Failed;
|
return Task::State::Failed;
|
||||||
@ -78,7 +78,7 @@ class ByteArraySink : public Sink {
|
|||||||
if (m_output)
|
if (m_output)
|
||||||
m_output->clear();
|
m_output->clear();
|
||||||
else
|
else
|
||||||
qWarning() << "ByteArraySink no clear because it's not adresable";
|
qWarning() << "ByteArraySink did not clear the buffer because it's not addressable";
|
||||||
failAllValidators();
|
failAllValidators();
|
||||||
return Task::State::Failed;
|
return Task::State::Failed;
|
||||||
}
|
}
|
||||||
|
@ -246,7 +246,7 @@ void ResourcePage::updateSelectionButton()
|
|||||||
else
|
else
|
||||||
m_ui->resourceSelectionButton->setText(tr("Deselect %1 for download").arg(resourceString()));
|
m_ui->resourceSelectionButton->setText(tr("Deselect %1 for download").arg(resourceString()));
|
||||||
} else {
|
} else {
|
||||||
qWarning() << "Try to update selection but there is not a pack selected";
|
qWarning() << "Tried to update the selected button but there is not a pack selected";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user