From 71686cb0a8b141dc742495cc89c3ee897d80002e Mon Sep 17 00:00:00 2001 From: cricri-pingouin <64480118+cricri-pingouin@users.noreply.github.com> Date: Tue, 22 Dec 2020 21:14:19 +0000 Subject: [PATCH] Update SettingsWindow.cpp Couple of typos --- SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp index 3506c4d4..8116829d 100644 --- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp +++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp @@ -192,7 +192,7 @@ void CSettingsWindow::apply() if (ui.chkPassRequired->isChecked()) { if (!isPassSet && m_NewPassword.isEmpty()) - OnSetPassword(); // request password entry if it wasn't already + OnSetPassword(); // request password entry if it wasn't entered already if (!m_NewPassword.isEmpty()) { theAPI->LockConfig(m_NewPassword); // set new/changed password m_NewPassword.clear(); @@ -309,7 +309,7 @@ retry: if (Value1.isEmpty()) return; - QString Value2 = QInputDialog::getText(this, "Sandboxie-Plus", tr("Please re enter the new configuration password."), QLineEdit::Password); + QString Value2 = QInputDialog::getText(this, "Sandboxie-Plus", tr("Please re-enter the new configuration password."), QLineEdit::Password); if (Value2.isEmpty()) return; @@ -384,4 +384,4 @@ void CSettingsWindow::OnDelCompat() pItem->setCheckState(0, Qt::Unchecked); m_CompatChanged = true; -} \ No newline at end of file +}