VirtualBox

Ignore:
Timestamp:
Apr 21, 2022 8:38:34 AM (3 years ago)
Author:
vboxsync
Message:

doc/manual,Main,Frontends: API changes in preparation for full VM encryption, guarded by VBOX_WITH_FULL_VM_ENCRYPTION (disabled by default) and returning a not supported error for now, bugref:9955

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp

    r94593 r94660  
    24682468
    24692469    /* Make sure this machine can be opened: */
    2470     CMachine comMachineNew = comVBox.OpenMachine(strTmpFile);
     2470    CMachine comMachineNew = comVBox.OpenMachine(strTmpFile, QString());
    24712471    if (!comVBox.isOk())
    24722472    {
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp

    r94658 r94660  
    31293129            foreach (const QString &strKey, encryptionPasswords.keys())
    31303130            {
    3131                 console().AddDiskEncryptionPassword(strKey, encryptionPasswords.value(strKey), false);
     3131                console().AddEncryptionPassword(strKey, encryptionPasswords.value(strKey), false);
    31323132                if (!console().isOk())
    31333133                    msgCenter().cannotAddDiskEncryptionPassword(console());
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVM.cpp

    r93659 r94660  
    181181    CVirtualBox comVBox = uiCommon().virtualBox();
    182182    /* Create a new machine object: */
    183     CMachine cloneMachine = comVBox.CreateMachine(m_strCloneFilePath, m_strCloneName, QVector<QString>(), QString(), QString());
     183    CMachine cloneMachine = comVBox.CreateMachine(m_strCloneFilePath, m_strCloneName, QVector<QString>(), QString(), QString(),
     184                                                  QString(), QString(), QString());
    184185    if (!comVBox.isOk())
    185186    {
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.cpp

    r94593 r94660  
    143143        m_machine = vbox.CreateMachine(m_strMachineFilePath,
    144144                                       m_strMachineBaseName,
    145                                        groups, strTypeId, QString());
     145                                       groups, strTypeId, QString(),
     146                                       QString(), QString(), QString());
    146147        if (!vbox.isOk())
    147148        {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette