Updated the messages

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2023-06-09 21:29:12 +03:00
parent f2932c6d03
commit b3d743635c
No known key found for this signature in database
GPG Key ID: 55EF5DA53DB36318
2 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ class ByteArraySink : public Sink {
if (m_output)
m_output->clear();
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))
return Task::State::Running;
return Task::State::Failed;
@ -67,7 +67,7 @@ class ByteArraySink : public Sink {
if (m_output)
m_output->append(data);
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))
return Task::State::Running;
return Task::State::Failed;
@ -78,7 +78,7 @@ class ByteArraySink : public Sink {
if (m_output)
m_output->clear();
else
qWarning() << "ByteArraySink no clear because it's not adresable";
qWarning() << "ByteArraySink did not clear the buffer because it's not addressable";
failAllValidators();
return Task::State::Failed;
}

View File

@ -246,7 +246,7 @@ void ResourcePage::updateSelectionButton()
else
m_ui->resourceSelectionButton->setText(tr("Deselect %1 for download").arg(resourceString()));
} 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";
}
}