VirtualBox

Changeset 90729 in vbox


Ignore:
Timestamp:
Aug 18, 2021 4:26:20 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
146354
Message:

FE/Qt: bugref:9996: New Cloud VM wizard: Handle progress related signals from UIFormEditorWidget, s.a. r146352 and r146353.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic2.cpp

    r89997 r90729  
    7171            if (iDefaultSectionHeight > 0)
    7272                m_pFormEditor->setMinimumHeight(8 * iDefaultSectionHeight);
     73            /* Setup connections: */
     74            connect(m_pFormEditor, &UIFormEditorWidget::sigProgressStarted,
     75                    this, &UIWizardNewCloudVMPageBasic2::sigProgressStarted);
     76            connect(m_pFormEditor, &UIFormEditorWidget::sigProgressChange,
     77                    this, &UIWizardNewCloudVMPageBasic2::sigProgressChange);
     78            connect(m_pFormEditor, &UIFormEditorWidget::sigProgressFinished,
     79                    this, &UIWizardNewCloudVMPageBasic2::sigProgressFinished);
    7380
    7481            /* Add into layout: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp

    r90375 r90729  
    183183                    const int iTotalHeight = 8 * iSectionHeight;
    184184                    m_pFormEditor->setMinimumSize(QSize(iTotalWidth, iTotalHeight));
     185                    /* Setup connections: */
     186                    connect(m_pFormEditor, &UIFormEditorWidget::sigProgressStarted,
     187                            this, &UIWizardNewCloudVMPageExpert::sigProgressStarted);
     188                    connect(m_pFormEditor, &UIFormEditorWidget::sigProgressChange,
     189                            this, &UIWizardNewCloudVMPageExpert::sigProgressChange);
     190                    connect(m_pFormEditor, &UIFormEditorWidget::sigProgressFinished,
     191                            this, &UIWizardNewCloudVMPageExpert::sigProgressFinished);
    185192
    186193                    /* Add into layout: */
Note: See TracChangeset for help on using the changeset viewer.

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