VirtualBox

Changeset 84275 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
May 12, 2020 5:04:10 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
137911
Message:

FE/Qt: bugref:9653: New Cloud VM wizard: Rename destination to location since that is actually both destination and source being specified.

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

Legend:

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

    r84162 r84275  
    163163        /* Check whether VM really added: */
    164164        if (comMachine.isNotNull())
    165             uiCommon().notifyCloudMachineRegistered(field("destination").toString(),
     165            uiCommon().notifyCloudMachineRegistered(field("location").toString(),
    166166                                                    field("profileName").toString(),
    167167                                                    comMachine.GetId(),
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.cpp

    r84162 r84275  
    4545UIWizardNewCloudVMPage1::UIWizardNewCloudVMPage1()
    4646    : m_fPolished(false)
    47     , m_pDestinationLayout(0)
    48     , m_pDestinationLabel(0)
    49     , m_pDestinationComboBox(0)
     47    , m_pLocationLayout(0)
     48    , m_pLocationLabel(0)
     49    , m_pLocationComboBox(0)
    5050    , m_pCloudContainerLayout(0)
    5151    , m_pAccountLabel(0)
     
    5858}
    5959
    60 void UIWizardNewCloudVMPage1::populateDestinations()
     60void UIWizardNewCloudVMPage1::populateLocations()
    6161{
    6262    /* To be executed just once, so combo should be empty: */
    63     AssertReturnVoid(m_pDestinationComboBox->count() == 0);
    64 
    65     /* Do we have OCI destination? */
     63    AssertReturnVoid(m_pLocationComboBox->count() == 0);
     64
     65    /* Do we have OCI location? */
    6666    bool fOCIPresent = false;
    6767
     
    9494
    9595            /* Compose empty item, fill it's data: */
    96             m_pDestinationComboBox->addItem(QString());
    97             m_pDestinationComboBox->setItemData(m_pDestinationComboBox->count() - 1, comProvider.GetId(),        DestinationData_ID);
    98             m_pDestinationComboBox->setItemData(m_pDestinationComboBox->count() - 1, comProvider.GetName(),      DestinationData_Name);
    99             m_pDestinationComboBox->setItemData(m_pDestinationComboBox->count() - 1, comProvider.GetShortName(), DestinationData_ShortName);
    100             if (m_pDestinationComboBox->itemData(m_pDestinationComboBox->count() - 1, DestinationData_ShortName).toString() == "OCI")
     96            m_pLocationComboBox->addItem(QString());
     97            m_pLocationComboBox->setItemData(m_pLocationComboBox->count() - 1, comProvider.GetId(),        LocationData_ID);
     98            m_pLocationComboBox->setItemData(m_pLocationComboBox->count() - 1, comProvider.GetName(),      LocationData_Name);
     99            m_pLocationComboBox->setItemData(m_pLocationComboBox->count() - 1, comProvider.GetShortName(), LocationData_ShortName);
     100            if (m_pLocationComboBox->itemData(m_pLocationComboBox->count() - 1, LocationData_ShortName).toString() == "OCI")
    101101                fOCIPresent = true;
    102102        }
     
    106106    /* Set default: */
    107107    if (fOCIPresent)
    108         setDestination("OCI");
     108        setLocation("OCI");
    109109}
    110110
     
    125125
    126126    /* If provider chosen: */
    127     if (!destinationId().isNull())
     127    if (!locationId().isNull())
    128128    {
    129129        /* Main API request sequence, can be interrupted after any step: */
     
    131131        {
    132132            /* (Re)initialize Cloud Provider: */
    133             m_comCloudProvider = m_comCloudProviderManager.GetProviderById(destinationId());
     133            m_comCloudProvider = m_comCloudProviderManager.GetProviderById(locationId());
    134134            if (!m_comCloudProviderManager.isOk())
    135135            {
    136                 msgCenter().cannotFindCloudProvider(m_comCloudProviderManager, destinationId());
     136                msgCenter().cannotFindCloudProvider(m_comCloudProviderManager, locationId());
    137137                break;
    138138            }
     
    405405}
    406406
    407 void UIWizardNewCloudVMPage1::updateDestinationComboToolTip()
    408 {
    409     const int iCurrentIndex = m_pDestinationComboBox->currentIndex();
     407void UIWizardNewCloudVMPage1::updateLocationComboToolTip()
     408{
     409    const int iCurrentIndex = m_pLocationComboBox->currentIndex();
    410410    if (iCurrentIndex != -1)
    411411    {
    412         const QString strCurrentToolTip = m_pDestinationComboBox->itemData(iCurrentIndex, Qt::ToolTipRole).toString();
     412        const QString strCurrentToolTip = m_pLocationComboBox->itemData(iCurrentIndex, Qt::ToolTipRole).toString();
    413413        AssertMsg(!strCurrentToolTip.isEmpty(), ("Data not found!"));
    414         m_pDestinationComboBox->setToolTip(strCurrentToolTip);
     414        m_pLocationComboBox->setToolTip(strCurrentToolTip);
    415415    }
    416416}
     
    448448}
    449449
    450 void UIWizardNewCloudVMPage1::setDestination(const QString &strDestination)
    451 {
    452     const int iIndex = m_pDestinationComboBox->findData(strDestination, DestinationData_ShortName);
     450void UIWizardNewCloudVMPage1::setLocation(const QString &strLocation)
     451{
     452    const int iIndex = m_pLocationComboBox->findData(strLocation, LocationData_ShortName);
    453453    AssertMsg(iIndex != -1, ("Data not found!"));
    454     m_pDestinationComboBox->setCurrentIndex(iIndex);
    455 }
    456 
    457 QString UIWizardNewCloudVMPage1::destination() const
    458 {
    459     const int iIndex = m_pDestinationComboBox->currentIndex();
    460     return m_pDestinationComboBox->itemData(iIndex, DestinationData_ShortName).toString();
    461 }
    462 
    463 QUuid UIWizardNewCloudVMPage1::destinationId() const
    464 {
    465     const int iIndex = m_pDestinationComboBox->currentIndex();
    466     return m_pDestinationComboBox->itemData(iIndex, DestinationData_ID).toUuid();
     454    m_pLocationComboBox->setCurrentIndex(iIndex);
     455}
     456
     457QString UIWizardNewCloudVMPage1::location() const
     458{
     459    const int iIndex = m_pLocationComboBox->currentIndex();
     460    return m_pLocationComboBox->itemData(iIndex, LocationData_ShortName).toString();
     461}
     462
     463QUuid UIWizardNewCloudVMPage1::locationId() const
     464{
     465    const int iIndex = m_pLocationComboBox->currentIndex();
     466    return m_pLocationComboBox->itemData(iIndex, LocationData_ID).toUuid();
    467467}
    468468
     
    530530        }
    531531
    532         /* Create destination layout: */
    533         m_pDestinationLayout = new QGridLayout;
    534         if (m_pDestinationLayout)
    535         {
    536             m_pDestinationLayout->setColumnStretch(0, 0);
    537             m_pDestinationLayout->setColumnStretch(1, 1);
    538 
    539             /* Create destination label: */
    540             m_pDestinationLabel = new QLabel(this);
    541             if (m_pDestinationLabel)
     532        /* Create location layout: */
     533        m_pLocationLayout = new QGridLayout;
     534        if (m_pLocationLayout)
     535        {
     536            m_pLocationLayout->setColumnStretch(0, 0);
     537            m_pLocationLayout->setColumnStretch(1, 1);
     538
     539            /* Create location label: */
     540            m_pLocationLabel = new QLabel(this);
     541            if (m_pLocationLabel)
    542542            {
    543543                /* Add into layout: */
    544                 m_pDestinationLayout->addWidget(m_pDestinationLabel, 0, 0, Qt::AlignRight);
    545             }
    546             /* Create destination selector: */
    547             m_pDestinationComboBox = new QIComboBox(this);
    548             if (m_pDestinationComboBox)
    549             {
    550                 m_pDestinationLabel->setBuddy(m_pDestinationComboBox);
     544                m_pLocationLayout->addWidget(m_pLocationLabel, 0, 0, Qt::AlignRight);
     545            }
     546            /* Create location selector: */
     547            m_pLocationComboBox = new QIComboBox(this);
     548            if (m_pLocationComboBox)
     549            {
     550                m_pLocationLabel->setBuddy(m_pLocationComboBox);
    551551
    552552                /* Add into layout: */
    553                 m_pDestinationLayout->addWidget(m_pDestinationComboBox, 0, 1);
     553                m_pLocationLayout->addWidget(m_pLocationComboBox, 0, 1);
    554554            }
    555555
     
    559559            {
    560560                /* Add into layout: */
    561                 m_pDestinationLayout->addWidget(m_pLabelDescription, 1, 0, 1, 2);
     561                m_pLocationLayout->addWidget(m_pLabelDescription, 1, 0, 1, 2);
    562562            }
    563563
    564564            /* Add into layout: */
    565             pMainLayout->addLayout(m_pDestinationLayout);
     565            pMainLayout->addLayout(m_pLocationLayout);
    566566        }
    567567
     
    667667    if (gpManager)
    668668        connect(gpManager, &UIVirtualBoxManager::sigCloudProfileManagerChange,
    669                 this, &UIWizardNewCloudVMPageBasic1::sltHandleDestinationChange);
    670     connect(m_pDestinationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated),
    671             this, &UIWizardNewCloudVMPageBasic1::sltHandleDestinationChange);
     669                this, &UIWizardNewCloudVMPageBasic1::sltHandleLocationChange);
     670    connect(m_pLocationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated),
     671            this, &UIWizardNewCloudVMPageBasic1::sltHandleLocationChange);
    672672    connect(m_pAccountComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged),
    673673            this, &UIWizardNewCloudVMPageBasic1::sltHandleAccountComboChange);
     
    678678
    679679    /* Register fields: */
    680     registerField("destination", this, "destination");
     680    registerField("location", this, "location");
    681681    registerField("profileName", this, "profileName");
    682682}
     
    705705{
    706706    /* Translate page: */
    707     setTitle(UIWizardNewCloudVM::tr("Destination to create"));
     707    setTitle(UIWizardNewCloudVM::tr("Location to create"));
    708708
    709709    /* Translate main label: */
    710     m_pLabelMain->setText(UIWizardNewCloudVM::tr("Please choose the destination to create cloud virtual machine in.  This can "
     710    m_pLabelMain->setText(UIWizardNewCloudVM::tr("Please choose the location to create cloud virtual machine in.  This can "
    711711                                                 "be one of known cloud service providers below."));
    712712
    713     /* Translate destination label: */
    714     m_pDestinationLabel->setText(UIWizardNewCloudVM::tr("&Destination:"));
    715     /* Translate received values of Destination combo-box.
     713    /* Translate location label: */
     714    m_pLocationLabel->setText(UIWizardNewCloudVM::tr("&Location:"));
     715    /* Translate received values of Location combo-box.
    716716     * We are enumerating starting from 0 for simplicity: */
    717     for (int i = 0; i < m_pDestinationComboBox->count(); ++i)
    718     {
    719         m_pDestinationComboBox->setItemText(i, m_pDestinationComboBox->itemData(i, DestinationData_Name).toString());
    720         m_pDestinationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole);
     717    for (int i = 0; i < m_pLocationComboBox->count(); ++i)
     718    {
     719        m_pLocationComboBox->setItemText(i, m_pLocationComboBox->itemData(i, LocationData_Name).toString());
     720        m_pLocationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole);
    721721    }
    722722
     
    733733    /* Adjust label widths: */
    734734    QList<QWidget*> labels;
    735     labels << m_pDestinationLabel;
     735    labels << m_pLocationLabel;
    736736    labels << m_pAccountLabel;
    737737    labels << m_pAccountImageLabel;
     
    739739    foreach (QWidget *pLabel, labels)
    740740        iMaxWidth = qMax(iMaxWidth, pLabel->minimumSizeHint().width());
    741     m_pDestinationLayout->setColumnMinimumWidth(0, iMaxWidth);
     741    m_pLocationLayout->setColumnMinimumWidth(0, iMaxWidth);
    742742    m_pCloudContainerLayout->setColumnMinimumWidth(0, iMaxWidth);
    743743
    744744    /* Update tool-tips: */
    745     updateDestinationComboToolTip();
     745    updateLocationComboToolTip();
    746746    updateAccountPropertyTableToolTips();
    747747}
     
    752752    if (!m_fPolished)
    753753    {
    754         /* Populate destinations: */
    755         populateDestinations();
     754        /* Populate locations: */
     755        populateLocations();
    756756        /* Choose one of them, asynchronously: */
    757         QMetaObject::invokeMethod(this, "sltHandleDestinationChange", Qt::QueuedConnection);
     757        QMetaObject::invokeMethod(this, "sltHandleLocationChange", Qt::QueuedConnection);
    758758        m_fPolished = true;
    759759    }
     
    791791}
    792792
    793 void UIWizardNewCloudVMPageBasic1::sltHandleDestinationChange()
     793void UIWizardNewCloudVMPageBasic1::sltHandleLocationChange()
    794794{
    795795    /* Update tool-tip: */
    796     updateDestinationComboToolTip();
     796    updateLocationComboToolTip();
    797797
    798798    /* Make image list focused by default: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.h

    r84162 r84275  
    4343class QIToolButton;
    4444
    45 /** Destination combo data fields. */
     45/** Location combo data fields. */
    4646enum
    4747{
    48     DestinationData_ID              = Qt::UserRole + 1,
    49     DestinationData_Name            = Qt::UserRole + 2,
    50     DestinationData_ShortName       = Qt::UserRole + 3
     48    LocationData_ID              = Qt::UserRole + 1,
     49    LocationData_Name            = Qt::UserRole + 2,
     50    LocationData_ShortName       = Qt::UserRole + 3
    5151};
    5252
     
    6565    UIWizardNewCloudVMPage1();
    6666
    67     /** Populates destinations. */
    68     void populateDestinations();
     67    /** Populates locations. */
     68    void populateLocations();
    6969    /** Populates accounts. */
    7070    void populateAccounts();
     
    7676    void populateFormProperties();
    7777
    78     /** Updates destination combo tool-tips. */
    79     void updateDestinationComboToolTip();
     78    /** Updates location combo tool-tips. */
     79    void updateLocationComboToolTip();
    8080    /** Updates account property table tool-tips. */
    8181    void updateAccountPropertyTableToolTips();
     
    8383    void adjustAccountPropertyTable();
    8484
    85     /** Defines @a strDestination. */
    86     void setDestination(const QString &strDestination);
    87     /** Returns destination. */
    88     QString destination() const;
    89     /** Returns destination ID. */
    90     QUuid destinationId() const;
     85    /** Defines @a strLocation. */
     86    void setLocation(const QString &strLocation);
     87    /** Returns location. */
     88    QString location() const;
     89    /** Returns location ID. */
     90    QUuid locationId() const;
    9191
    9292    /** Returns profile name. */
     
    120120    CCloudProfile          m_comCloudProfile;
    121121
    122     /** Holds the destination layout instance. */
    123     QGridLayout *m_pDestinationLayout;
    124     /** Holds the destination type label instance. */
    125     QLabel      *m_pDestinationLabel;
    126     /** Holds the destination type combo-box instance. */
    127     QIComboBox  *m_pDestinationComboBox;
     122    /** Holds the location layout instance. */
     123    QGridLayout *m_pLocationLayout;
     124    /** Holds the location type label instance. */
     125    QLabel      *m_pLocationLabel;
     126    /** Holds the location type combo-box instance. */
     127    QIComboBox  *m_pLocationComboBox;
    128128
    129129    /** Holds the cloud container layout instance. */
     
    147147{
    148148    Q_OBJECT;
    149     Q_PROPERTY(QString destination READ destination);
     149    Q_PROPERTY(QString location READ location);
    150150    Q_PROPERTY(QString profileName READ profileName);
    151151
     
    177177private slots:
    178178
    179     /** Handles change in destination combo-box. */
    180     void sltHandleDestinationChange();
     179    /** Handles change in location combo-box. */
     180    void sltHandleLocationChange();
    181181
    182182    /** Handles change in account combo-box. */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp

    r84162 r84275  
    3535UIWizardNewCloudVMPageExpert::UIWizardNewCloudVMPageExpert(bool fFullWizard)
    3636    : UIWizardNewCloudVMPage2(fFullWizard)
    37     , m_pCntDestination(0)
     37    , m_pCntLocation(0)
    3838    , m_pSettingsCnt(0)
    3939{
     
    4242    if (pMainLayout)
    4343    {
    44         /* Create destination container: */
    45         m_pCntDestination = new QGroupBox(this);
    46         if (m_pCntDestination)
    47         {
    48             /* There is no destination table in short wizard form: */
     44        /* Create location container: */
     45        m_pCntLocation = new QGroupBox(this);
     46        if (m_pCntLocation)
     47        {
     48            /* There is no location table in short wizard form: */
    4949            if (!m_fFullWizard)
    50                 m_pCntDestination->setVisible(false);
    51 
    52             /* Create destination layout: */
    53             m_pDestinationLayout = new QGridLayout(m_pCntDestination);
    54             if (m_pDestinationLayout)
     50                m_pCntLocation->setVisible(false);
     51
     52            /* Create location layout: */
     53            m_pLocationLayout = new QGridLayout(m_pCntLocation);
     54            if (m_pLocationLayout)
    5555            {
    56                 /* Create destination selector: */
    57                 m_pDestinationComboBox = new QIComboBox(m_pCntDestination);
    58                 if (m_pDestinationComboBox)
     56                /* Create location selector: */
     57                m_pLocationComboBox = new QIComboBox(m_pCntLocation);
     58                if (m_pLocationComboBox)
    5959                {
    6060                    /* Add into layout: */
    61                     m_pDestinationLayout->addWidget(m_pDestinationComboBox, 0, 0);
     61                    m_pLocationLayout->addWidget(m_pLocationComboBox, 0, 0);
    6262                }
    6363
     
    7777
    7878                        /* Create account combo-box: */
    79                         m_pAccountComboBox = new QIComboBox(m_pCntDestination);
     79                        m_pAccountComboBox = new QIComboBox(m_pCntLocation);
    8080                        if (m_pAccountComboBox)
    8181                        {
     
    8484                        }
    8585                        /* Create account tool-button: */
    86                         m_pAccountToolButton = new QIToolButton(m_pCntDestination);
     86                        m_pAccountToolButton = new QIToolButton(m_pCntLocation);
    8787                        if (m_pAccountToolButton)
    8888                        {
     
    9999
    100100                    /* Create profile property table: */
    101                     m_pAccountPropertyTable = new QTableWidget(m_pCntDestination);
     101                    m_pAccountPropertyTable = new QTableWidget(m_pCntLocation);
    102102                    if (m_pAccountPropertyTable)
    103103                    {
     
    119119
    120120                    /* Create profile instances table: */
    121                     m_pAccountImageList = new QListWidget(m_pCntDestination);
     121                    m_pAccountImageList = new QListWidget(m_pCntLocation);
    122122                    if (m_pAccountImageList)
    123123                    {
     
    136136
    137137                    /* Add into layout: */
    138                     m_pDestinationLayout->addLayout(m_pCloudContainerLayout, 1, 0);
     138                    m_pLocationLayout->addLayout(m_pCloudContainerLayout, 1, 0);
    139139                }
    140140            }
    141141
    142142            /* Add into layout: */
    143             pMainLayout->addWidget(m_pCntDestination);
     143            pMainLayout->addWidget(m_pCntLocation);
    144144        }
    145145
     
    176176    if (gpManager)
    177177        connect(gpManager, &UIVirtualBoxManager::sigCloudProfileManagerChange,
    178                 this, &UIWizardNewCloudVMPageExpert::sltHandleDestinationChange);
    179     connect(m_pDestinationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated),
    180             this, &UIWizardNewCloudVMPageExpert::sltHandleDestinationChange);
     178                this, &UIWizardNewCloudVMPageExpert::sltHandleLocationChange);
     179    connect(m_pLocationComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::activated),
     180            this, &UIWizardNewCloudVMPageExpert::sltHandleLocationChange);
    181181    connect(m_pAccountComboBox, static_cast<void(QIComboBox::*)(int)>(&QIComboBox::currentIndexChanged),
    182182            this, &UIWizardNewCloudVMPageExpert::sltHandleAccountComboChange);
     
    187187
    188188    /* Register fields: */
    189     registerField("destination", this, "destination");
     189    registerField("location", this, "location");
    190190    registerField("profileName", this, "profileName");
    191191}
     
    213213void UIWizardNewCloudVMPageExpert::retranslateUi()
    214214{
    215     /* Translate destination container: */
    216     m_pCntDestination->setTitle(UIWizardNewCloudVM::tr("Destination"));
    217 
    218     /* Translate received values of Destination combo-box.
     215    /* Translate location container: */
     216    m_pCntLocation->setTitle(UIWizardNewCloudVM::tr("Location"));
     217
     218    /* Translate received values of Location combo-box.
    219219     * We are enumerating starting from 0 for simplicity: */
    220     for (int i = 0; i < m_pDestinationComboBox->count(); ++i)
    221     {
    222         m_pDestinationComboBox->setItemText(i, m_pDestinationComboBox->itemData(i, DestinationData_Name).toString());
    223         m_pDestinationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole);
     220    for (int i = 0; i < m_pLocationComboBox->count(); ++i)
     221    {
     222        m_pLocationComboBox->setItemText(i, m_pLocationComboBox->itemData(i, LocationData_Name).toString());
     223        m_pLocationComboBox->setItemData(i, UIWizardNewCloudVM::tr("Create VM for cloud service provider."), Qt::ToolTipRole);
    224224    }
    225225
     
    228228
    229229    /* Update tool-tips: */
    230     updateDestinationComboToolTip();
     230    updateLocationComboToolTip();
    231231    updateAccountPropertyTableToolTips();
    232232}
     
    239239        if (m_fFullWizard)
    240240        {
    241             /* Populate destinations: */
    242             populateDestinations();
     241            /* Populate locations: */
     242            populateLocations();
    243243            /* Choose one of them, asynchronously: */
    244             QMetaObject::invokeMethod(this, "sltHandleDestinationChange", Qt::QueuedConnection);
     244            QMetaObject::invokeMethod(this, "sltHandleLocationChange", Qt::QueuedConnection);
    245245        }
    246246        else
     
    310310}
    311311
    312 void UIWizardNewCloudVMPageExpert::sltHandleDestinationChange()
     312void UIWizardNewCloudVMPageExpert::sltHandleLocationChange()
    313313{
    314314    /* Update tool-tip: */
    315     updateDestinationComboToolTip();
     315    updateLocationComboToolTip();
    316316
    317317    /* Make image list focused by default: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.h

    r84162 r84275  
    3535{
    3636    Q_OBJECT;
    37     Q_PROPERTY(QString destination READ destination);
     37    Q_PROPERTY(QString location READ location);
    3838    Q_PROPERTY(QString profileName READ profileName);
    3939
     
    6565private slots:
    6666
    67     /** Handles change in destination combo-box. */
    68     void sltHandleDestinationChange();
     67    /** Handles change in location combo-box. */
     68    void sltHandleLocationChange();
    6969
    7070    /** Handles change in account combo-box. */
     
    8181private:
    8282
    83     /** Holds the destination container instance. */
    84     QGroupBox *m_pCntDestination;
     83    /** Holds the location container instance. */
     84    QGroupBox *m_pCntLocation;
    8585    /** Holds the settings container instance. */
    8686    QGroupBox *m_pSettingsCnt;
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