aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--launcher/net/ByteArraySink.h6
-rw-r--r--launcher/ui/pages/modplatform/ResourcePage.cpp2
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";
}
}