- Timestamp:
- Jul 16, 2015 2:31:31 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIAddDiskEncryptionPasswordDialog.cpp
r56953 r56954 204 204 case Qt::Key_Return: 205 205 emit sigEnterKeyTriggered(); 206 pEvent->accept(); 206 207 break; 207 208 default: … … 457 458 const QString strPassword = m_pTableEncryptionData->encryptionPasswords().value(strPasswordId); 458 459 if (!isPasswordValid(strMediumId, strPassword)) 459 return msgCenter().warnAboutInvalidEncryptionPassword(strPasswordId, this); 460 { 461 msgCenter().warnAboutInvalidEncryptionPassword(strPasswordId, this); 462 AssertPtrReturnVoid(m_pTableEncryptionData); 463 m_pTableEncryptionData->setFocus(); 464 m_pTableEncryptionData->editFirstIndex(); 465 return; 466 } 460 467 } 461 468 /* Call to base-class: */
Note:
See TracChangeset
for help on using the changeset viewer.