Searched defs:pDlg (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsGeneral.cpp231 QPointer<UIAddDiskEncryptionPasswordDialog> pDlg = local
236 if (pDlg->exec() == QDialog::Accepted)
237 generalData.m_encryptionPasswords = pDlg->encryptionPasswords();
239 if (pDlg)
240 delete pDlg;
/vbox/src/VBox/Frontends/VirtualBox/src/selector/
H A DVBoxSnapshotsWgt.cpp837 QPointer<VBoxTakeSnapshotDlg> pDlg = new VBoxTakeSnapshotDlg(pDlgParent, mMachine); local
838 windowManager().registerNewParent(pDlg, pDlgParent);
841 pDlg->mLbIcon->setPixmap(vboxGlobal().vmGuestOSTypeIcon(mMachine.GetOSTypeId()));
856 pDlg->mLeName->setText(snapShotName.arg(iMaxSnapShotIndex + 1));
859 bool fDialogAccepted = pDlg->exec() == QDialog::Accepted;
862 if (pDlg)
865 QString strSnapshotName = pDlg->mLeName->text().trimmed();
866 QString strSnapshotDescription = pDlg->mTeDescription->toPlainText();
869 delete pDlg;
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMachineLogic.cpp1395 QPointer<VBoxTakeSnapshotDlg> pDlg = new VBoxTakeSnapshotDlg(pDlgParent, machine()); local
1396 windowManager().registerNewParent(pDlg, pDlgParent);
1400 pDlg->mLbIcon->setPixmap(vboxGlobal().vmGuestOSTypeIcon(strTypeId));
1405 pDlg->mLeName->setText(strNameTemplate.arg(++ iMaxSnapshotIndex));
1408 bool fDialogAccepted = pDlg->exec() == QDialog::Accepted;
1411 if (!pDlg)
1415 QString strSnapshotName = pDlg->mLeName->text().trimmed();
1416 QString strSnapshotDescription = pDlg->mTeDescription->toPlainText();
1419 delete pDlg;
2422 QPointer<UIAddDiskEncryptionPasswordDialog> pDlg local
[all...]

Completed in 53 milliseconds