diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-09 21:29:12 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-09 21:29:12 +0300 |
commit | b3d743635c86aac583fb802c1e3c7aa25e12dc88 (patch) | |
tree | 6ea55b29fba72a39c6bbdeafe3e1122d99f1f7c0 | |
parent | f2932c6d0387c41bd876d4af4148a7ffb5c83154 (diff) | |
download | PrismLauncher-b3d743635c86aac583fb802c1e3c7aa25e12dc88.tar.gz PrismLauncher-b3d743635c86aac583fb802c1e3c7aa25e12dc88.tar.bz2 PrismLauncher-b3d743635c86aac583fb802c1e3c7aa25e12dc88.zip |
Updated the messages
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
-rw-r--r-- | launcher/net/ByteArraySink.h | 6 | ||||
-rw-r--r-- | launcher/ui/pages/modplatform/ResourcePage.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/launcher/net/ByteArraySink.h b/launcher/net/ByteArraySink.h index 0d77727e..728193b3 100644 --- a/launcher/net/ByteArraySink.h +++ b/launcher/net/ByteArraySink.h @@ -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; } diff --git a/launcher/ui/pages/modplatform/ResourcePage.cpp b/launcher/ui/pages/modplatform/ResourcePage.cpp index 2bb86777..1d2509d8 100644 --- a/launcher/ui/pages/modplatform/ResourcePage.cpp +++ b/launcher/ui/pages/modplatform/ResourcePage.cpp @@ -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"; } } |