From b69e0a69d0805314ad7ef03921cdb3f1ac05cb15 Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 23 Jul 2022 16:13:08 +0100 Subject: [PATCH] Tidying --- src/Application.cpp | 6 +++--- src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index f86dbfe0..d181e03b 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -288,7 +288,7 @@ namespace Bloom */ Logger::silence(); - // The file help.txt is included in the binary image as a resource. See src/resource.qrc + // The file help.txt is included in Bloom's binary, as a resource. See the root-level CMakeLists.txt for more. auto helpFile = QFile(QString::fromStdString(Paths::compiledResourcesPath() + "/resources/help.txt")); if (!helpFile.open(QIODevice::ReadOnly)) { @@ -341,8 +341,8 @@ namespace Bloom } /* - * The file bloom.template.yaml is just a template Bloom config file that is included in the binary image as - * a resource. See the root-level CMakeLists.txt for more. + * The file bloom.template.yaml is just a template Bloom config file that is included in Bloom's binary, as a + * resource. See the root-level CMakeLists.txt for more. * * We simply copy the template file into the user's working directory. */ diff --git a/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp b/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp index c4f0243b..b43cb7a1 100644 --- a/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp +++ b/src/DebugServer/Gdb/CommandPackets/HelpMonitorInfo.cpp @@ -27,7 +27,10 @@ namespace Bloom::DebugServer::Gdb::CommandPackets Logger::debug("Handling HelpMonitorInfo packet"); try { - // The file gdbHelpMonitorInfo.txt is included in the binary image as a resource. See src/resource.qrc + /* + * The file gdbHelpMonitorInfo.txt is included in the binary image as a resource. See the root-level + * CMakeLists.txt for more. + */ auto helpFile = QFile( QString::fromStdString(Paths::compiledResourcesPath() + "/resources/gdbHelpMonitorInfo.txt") );