Update NewBoxWizard.cpp

Typo fix for a string
This commit is contained in:
Sebastian G 2023-04-16 07:41:09 +02:00 committed by GitHub
parent 2fe8073c2f
commit c16b01a625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ void CSummaryPage::initializePage()
else if(field("fakeAdmin").toBool()) else if(field("fakeAdmin").toBool())
m_pSummary->append(tr("\nProcesses in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box.")); m_pSummary->append(tr("\nProcesses in this box will think they are run with administrative privileges, without actually having them, hence installers can be used even in a security hardened box."));
else if(field("boxToken").toBool()) else if(field("boxToken").toBool())
m_pSummary->append(tr("\nProcesses in this box will be running with a custom process token indicating the sandbox thay belong to.")); m_pSummary->append(tr("\nProcesses in this box will be running with a custom process token indicating the sandbox they belong to."));
m_pSetDefault->setVisible(((CNewBoxWizard*)wizard())->m_bAdvanced); m_pSetDefault->setVisible(((CNewBoxWizard*)wizard())->m_bAdvanced);
} }