mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-21 03:21:43 -06:00
Use nullptr where possible
This commit is contained in:
@@ -56,8 +56,8 @@ void CipherDialog::checkInputFields()
|
||||
{
|
||||
if(keyFormat() == KeyFormats::Passphrase)
|
||||
{
|
||||
ui->editPassword->setValidator(0);
|
||||
ui->editPassword2->setValidator(0);
|
||||
ui->editPassword->setValidator(nullptr);
|
||||
ui->editPassword2->setValidator(nullptr);
|
||||
ui->editPassword->setPlaceholderText("");
|
||||
} else if(keyFormat() == KeyFormats::RawKey) {
|
||||
ui->editPassword->setValidator(rawKeyValidator);
|
||||
|
||||
Reference in New Issue
Block a user