From 91b2ade6935c44686c4bd75996289feb07ae696a Mon Sep 17 00:00:00 2001 From: GriffinR Date: Mon, 25 Dec 2023 01:57:31 -0500 Subject: [PATCH] Review changes --- src/core/bitpacker.cpp | 2 +- src/ui/projectsettingseditor.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/bitpacker.cpp b/src/core/bitpacker.cpp index f44d8140..edccf415 100644 --- a/src/core/bitpacker.cpp +++ b/src/core/bitpacker.cpp @@ -1,5 +1,5 @@ #include "bitpacker.h" -#include +#include // Sometimes we can't explicitly define bitfields because we need to allow users to // change the size and arrangement of its members. In those cases we use this diff --git a/src/ui/projectsettingseditor.cpp b/src/ui/projectsettingseditor.cpp index 493d019b..0d9f2aff 100644 --- a/src/ui/projectsettingseditor.cpp +++ b/src/ui/projectsettingseditor.cpp @@ -697,7 +697,7 @@ void ProjectSettingsEditor::closeEvent(QCloseEvent* event) { if (this->projectNeedsReload) { // Note: Declining this prompt with changes that need a reload may cause problems - if (this->prompt("Settings changed, reload project to apply changes?") == QMessageBox::Yes) + if (this->prompt("Settings saved, reload project to apply changes?") == QMessageBox::Yes) emit this->reloadProject(); } QMainWindow::closeEvent(event);