VirtualBox

Changeset 91062 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Sep 1, 2021 2:43:18 PM (3 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9996. Renaming clonevd classes.

Location:
trunk/src/VBox/Frontends/VirtualBox
Files:
2 edited
8 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk

    r91061 r91062  
    671671        src/wizards/clonevm/UIWizardCloneVMExpertPage.h \
    672672        src/wizards/clonevd/UIWizardCloneVD.h \
    673         src/wizards/clonevd/UIWizardCloneVDPageFormat.h \
    674         src/wizards/clonevd/UIWizardCloneVDPageVariant.h \
    675         src/wizards/clonevd/UIWizardCloneVDPagePathSize.h \
    676         src/wizards/clonevd/UIWizardCloneVDPageExpert.h \
     673        src/wizards/clonevd/UIWizardCloneVDFormatPage.h \
     674        src/wizards/clonevd/UIWizardCloneVDVariantPage.h \
     675        src/wizards/clonevd/UIWizardCloneVDPathSizePage.h \
     676        src/wizards/clonevd/UIWizardCloneVDExpertPage.h \
    677677        src/wizards/exportappliance/UIWizardExportApp.h \
    678678        src/wizards/exportappliance/UIWizardExportAppPageBasic1.h \
     
    11791179        src/wizards/clonevm/UIWizardCloneVMExpertPage.cpp \
    11801180        src/wizards/clonevd/UIWizardCloneVD.cpp \
    1181         src/wizards/clonevd/UIWizardCloneVDPageFormat.cpp \
    1182         src/wizards/clonevd/UIWizardCloneVDPageVariant.cpp \
    1183         src/wizards/clonevd/UIWizardCloneVDPagePathSize.cpp \
    1184         src/wizards/clonevd/UIWizardCloneVDPageExpert.cpp \
     1181        src/wizards/clonevd/UIWizardCloneVDFormatPage.cpp \
     1182        src/wizards/clonevd/UIWizardCloneVDVariantPage.cpp \
     1183        src/wizards/clonevd/UIWizardCloneVDPathSizePage.cpp \
     1184        src/wizards/clonevd/UIWizardCloneVDExpertPage.cpp \
    11851185        src/wizards/exportappliance/UIWizardExportApp.cpp \
    11861186        src/wizards/exportappliance/UIWizardExportAppPageBasic1.cpp \
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.cpp

    r91035 r91062  
    2222#include "UINotificationCenter.h"
    2323#include "UIWizardCloneVD.h"
    24 #include "UIWizardCloneVDPageFormat.h"
    25 #include "UIWizardCloneVDPageVariant.h"
    26 #include "UIWizardCloneVDPagePathSize.h"
    27 #include "UIWizardCloneVDPageExpert.h"
     24#include "UIWizardCloneVDFormatPage.h"
     25#include "UIWizardCloneVDVariantPage.h"
     26#include "UIWizardCloneVDPathSizePage.h"
     27#include "UIWizardCloneVDExpertPage.h"
    2828
    2929/* COM includes: */
     
    108108
    109109            {
    110             addPage(new UIWizardCloneVDPageFormat(m_enmDeviceType));
    111             m_iMediumVariantPageIndex = addPage(new UIWizardCloneVDPageVariant);
    112             addPage(new UIWizardCloneVDPagePathSize(sourceDiskLogicalSize()));
     110            addPage(new UIWizardCloneVDFormatPage(m_enmDeviceType));
     111            m_iMediumVariantPageIndex = addPage(new UIWizardCloneVDVariantPage);
     112            addPage(new UIWizardCloneVDPathSizePage(sourceDiskLogicalSize()));
    113113            break;
    114114        }
    115115        case WizardMode_Expert:
    116116        {
    117             addPage(new UIWizardCloneVDPageExpert(m_enmDeviceType, sourceDiskLogicalSize()));
     117            addPage(new UIWizardCloneVDExpertPage(m_enmDeviceType, sourceDiskLogicalSize()));
    118118            break;
    119119        }
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDExpertPage.cpp

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPageExpert class implementation.
     3 * VBox Qt GUI - UIWizardCloneVDExpertPage class implementation.
    44 */
    55
     
    2424#include "UIMessageCenter.h"
    2525#include "UIWizardCloneVD.h"
    26 #include "UIWizardCloneVDPageExpert.h"
     26#include "UIWizardCloneVDExpertPage.h"
    2727#include "UIWizardDiskEditors.h"
    2828
     
    3030#include "CSystemProperties.h"
    3131
    32 UIWizardCloneVDPageExpert::UIWizardCloneVDPageExpert(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize)
     32UIWizardCloneVDExpertPage::UIWizardCloneVDExpertPage(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize)
    3333    :m_pFormatGroupBox(0)
    3434    , m_pVariantGroupBox(0)
     
    3939}
    4040
    41 void UIWizardCloneVDPageExpert::prepare(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize)
     41void UIWizardCloneVDExpertPage::prepare(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize)
    4242{
    4343    QGridLayout *pMainLayout = new QGridLayout(this);
     
    4949        pMainLayout->addWidget(m_pMediumSizePathGroupBox, 0, 0, 4, 2);
    5050        connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumLocationButtonClicked,
    51                 this, &UIWizardCloneVDPageExpert::sltSelectLocationButtonClicked);
     51                this, &UIWizardCloneVDExpertPage::sltSelectLocationButtonClicked);
    5252        connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumPathChanged,
    53                 this, &UIWizardCloneVDPageExpert::sltMediumPathChanged);
     53                this, &UIWizardCloneVDExpertPage::sltMediumPathChanged);
    5454        connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumSizeChanged,
    55                 this, &UIWizardCloneVDPageExpert::sltMediumSizeChanged);
     55                this, &UIWizardCloneVDExpertPage::sltMediumSizeChanged);
    5656    }
    5757
     
    6161        pMainLayout-> addWidget(m_pFormatGroupBox, 4, 0, 7, 1);
    6262        connect(m_pFormatGroupBox, &UIDiskFormatsGroupBox::sigMediumFormatChanged,
    63                 this, &UIWizardCloneVDPageExpert::sltMediumFormatChanged);
     63                this, &UIWizardCloneVDExpertPage::sltMediumFormatChanged);
    6464    }
    6565
     
    6969        pMainLayout-> addWidget(m_pVariantGroupBox, 4, 1, 3, 1);
    7070        connect(m_pVariantGroupBox, &UIDiskVariantGroupBox::sigMediumVariantChanged,
    71                 this, &UIWizardCloneVDPageExpert::sltMediumVariantChanged);
    72     }
    73 }
    74 
    75 void UIWizardCloneVDPageExpert::sltMediumFormatChanged()
     71                this, &UIWizardCloneVDExpertPage::sltMediumVariantChanged);
     72    }
     73}
     74
     75void UIWizardCloneVDExpertPage::sltMediumFormatChanged()
    7676{
    7777    if (wizardWindow<UIWizardCloneVD>() && m_pFormatGroupBox)
     
    8181}
    8282
    83 void UIWizardCloneVDPageExpert::sltSelectLocationButtonClicked()
     83void UIWizardCloneVDExpertPage::sltSelectLocationButtonClicked()
    8484{
    8585    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
     
    9898}
    9999
    100 void UIWizardCloneVDPageExpert::sltMediumVariantChanged(qulonglong uVariant)
     100void UIWizardCloneVDExpertPage::sltMediumVariantChanged(qulonglong uVariant)
    101101{
    102102    if (wizardWindow<UIWizardCloneVD>())
     
    104104}
    105105
    106 void UIWizardCloneVDPageExpert::sltMediumSizeChanged(qulonglong uSize)
     106void UIWizardCloneVDExpertPage::sltMediumSizeChanged(qulonglong uSize)
    107107{
    108108    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
     
    112112}
    113113
    114 void UIWizardCloneVDPageExpert::sltMediumPathChanged(const QString &strPath)
     114void UIWizardCloneVDExpertPage::sltMediumPathChanged(const QString &strPath)
    115115{
    116116    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
     
    123123}
    124124
    125 void UIWizardCloneVDPageExpert::retranslateUi()
    126 {
    127 }
    128 
    129 void UIWizardCloneVDPageExpert::initializePage()
     125void UIWizardCloneVDExpertPage::retranslateUi()
     126{
     127}
     128
     129void UIWizardCloneVDExpertPage::initializePage()
    130130{
    131131    AssertReturnVoid(wizardWindow<UIWizardCloneVD>() && m_pMediumSizePathGroupBox && m_pFormatGroupBox && m_pVariantGroupBox);
     
    156156}
    157157
    158 bool UIWizardCloneVDPageExpert::isComplete() const
     158bool UIWizardCloneVDExpertPage::isComplete() const
    159159{
    160160    bool fResult = true;
     
    170170}
    171171
    172 bool UIWizardCloneVDPageExpert::validatePage()
     172bool UIWizardCloneVDExpertPage::validatePage()
    173173{
    174174    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
     
    185185}
    186186
    187 void UIWizardCloneVDPageExpert::updateDiskWidgetsAfterMediumFormatChange()
     187void UIWizardCloneVDExpertPage::updateDiskWidgetsAfterMediumFormatChange()
    188188{
    189189    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDExpertPage.h

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPageExpert class declaration.
     3 * VBox Qt GUI - UIWizardCloneVDExpertPage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageExpert_h
    19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageExpert_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDExpertPage_h
     19#define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDExpertPage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    3434
    3535/** Expert page of the Clone Virtual Disk Image wizard: */
    36 class UIWizardCloneVDPageExpert : public UINativeWizardPage
     36class UIWizardCloneVDExpertPage : public UINativeWizardPage
    3737{
    3838    Q_OBJECT;
     
    4343      * @param  comSourceVirtualDisk  Brings the initial source disk to make copy from.
    4444      * @param  enmDeviceType         Brings the device type to limit format to. */
    45     UIWizardCloneVDPageExpert(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize);
     45    UIWizardCloneVDExpertPage(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize);
    4646
    4747private slots:
     
    8282};
    8383
    84 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageExpert_h */
     84#endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDExpertPage_h */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDFormatPage.cpp

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPageFormat class implementation.
     3 * VBox Qt GUI - UIWizardCloneVDFormatPage class implementation.
    44 */
    55
     
    2020
    2121/* GUI includes: */
    22 #include "UIWizardCloneVDPageFormat.h"
     22#include "UIWizardCloneVDFormatPage.h"
    2323#include "UIWizardCloneVD.h"
    2424#include "UIWizardDiskEditors.h"
     
    2929#include "CSystemProperties.h"
    3030
    31 UIWizardCloneVDPageFormat::UIWizardCloneVDPageFormat(KDeviceType enmDeviceType)
     31UIWizardCloneVDFormatPage::UIWizardCloneVDFormatPage(KDeviceType enmDeviceType)
    3232    : m_pLabel(0)
    3333    , m_pFormatGroupBox(0)
     
    3636}
    3737
    38 void UIWizardCloneVDPageFormat::prepare(KDeviceType enmDeviceType)
     38void UIWizardCloneVDFormatPage::prepare(KDeviceType enmDeviceType)
    3939{
    4040    QVBoxLayout *pMainLayout = new QVBoxLayout(this);
     
    4747        pMainLayout->addWidget(m_pFormatGroupBox);
    4848        connect(m_pFormatGroupBox, &UIDiskFormatsGroupBox::sigMediumFormatChanged,
    49                 this, &UIWizardCloneVDPageFormat::sltMediumFormatChanged);
     49                this, &UIWizardCloneVDFormatPage::sltMediumFormatChanged);
    5050    }
    5151    pMainLayout->addStretch();
     
    5353}
    5454
    55 void UIWizardCloneVDPageFormat::retranslateUi()
     55void UIWizardCloneVDFormatPage::retranslateUi()
    5656{
    5757    /* Translate page: */
     
    6464}
    6565
    66 void UIWizardCloneVDPageFormat::initializePage()
     66void UIWizardCloneVDFormatPage::initializePage()
    6767{
    6868    AssertReturnVoid(wizardWindow<UIWizardCloneVD>());
     
    7676}
    7777
    78 bool UIWizardCloneVDPageFormat::isComplete() const
     78bool UIWizardCloneVDFormatPage::isComplete() const
    7979{
    8080    if (m_pFormatGroupBox)
     
    8686}
    8787
    88 void UIWizardCloneVDPageFormat::sltMediumFormatChanged()
     88void UIWizardCloneVDFormatPage::sltMediumFormatChanged()
    8989{
    9090    AssertReturnVoid(wizardWindow<UIWizardCloneVD>());
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDFormatPage.h

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPageFormat class declaration.
     3 * VBox Qt GUI - UIWizardCloneVDFormatPage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageFormat_h
    19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageFormat_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDFormatPage_h
     19#define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDFormatPage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    3636
    3737/** 2nd page of the Clone Virtual Disk Image wizard (basic extension): */
    38 class UIWizardCloneVDPageFormat : public UINativeWizardPage
     38class UIWizardCloneVDFormatPage : public UINativeWizardPage
    3939{
    4040    Q_OBJECT;
     
    4444    /** Constructs basic page.
    4545      * @param  enmDeviceType  Brings the device type to limit format to. */
    46     UIWizardCloneVDPageFormat(KDeviceType enmDeviceType);
     46    UIWizardCloneVDFormatPage(KDeviceType enmDeviceType);
    4747
    4848private slots:
     
    6969};
    7070
    71 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageFormat_h */
     71#endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDFormatPage_h */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPathSizePage.cpp

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPagePathSize class implementation.
     3 * VBox Qt GUI - UIWizardCloneVDPathSizePage class implementation.
    44 */
    55
     
    2121
    2222/* GUI includes: */
    23 #include "UIWizardCloneVDPagePathSize.h"
     23#include "UIWizardCloneVDPathSizePage.h"
    2424#include "UIWizardDiskEditors.h"
    2525#include "UIWizardCloneVD.h"
    2626#include "UIMessageCenter.h"
    2727
    28 UIWizardCloneVDPagePathSize::UIWizardCloneVDPagePathSize(qulonglong uSourceDiskLogicaSize)
     28UIWizardCloneVDPathSizePage::UIWizardCloneVDPathSizePage(qulonglong uSourceDiskLogicaSize)
    2929    : m_pMediumSizePathGroupBox(0)
    3030{
     
    3232}
    3333
    34 void UIWizardCloneVDPagePathSize::prepare(qulonglong uSourceDiskLogicaSize)
     34void UIWizardCloneVDPathSizePage::prepare(qulonglong uSourceDiskLogicaSize)
    3535{
    3636    QVBoxLayout *pMainLayout = new QVBoxLayout(this);
     
    4040        pMainLayout->addWidget(m_pMediumSizePathGroupBox);
    4141        connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumLocationButtonClicked,
    42                 this, &UIWizardCloneVDPagePathSize::sltSelectLocationButtonClicked);
     42                this, &UIWizardCloneVDPathSizePage::sltSelectLocationButtonClicked);
    4343        connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumPathChanged,
    44                 this, &UIWizardCloneVDPagePathSize::sltMediumPathChanged);
     44                this, &UIWizardCloneVDPathSizePage::sltMediumPathChanged);
    4545        connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumSizeChanged,
    46                 this, &UIWizardCloneVDPagePathSize::sltMediumSizeChanged);
     46                this, &UIWizardCloneVDPathSizePage::sltMediumSizeChanged);
    4747    }
    4848    pMainLayout->addStretch();
     
    5050}
    5151
    52 void UIWizardCloneVDPagePathSize::retranslateUi()
     52void UIWizardCloneVDPathSizePage::retranslateUi()
    5353{
    5454    /* Translate page: */
     
    5656}
    5757
    58 void UIWizardCloneVDPagePathSize::initializePage()
     58void UIWizardCloneVDPathSizePage::initializePage()
    5959{
    6060    AssertReturnVoid(wizardWindow<UIWizardCloneVD>() && m_pMediumSizePathGroupBox);
     
    8787}
    8888
    89 bool UIWizardCloneVDPagePathSize::isComplete() const
     89bool UIWizardCloneVDPathSizePage::isComplete() const
    9090{
    9191    AssertReturn(m_pMediumSizePathGroupBox, false);
     
    9393}
    9494
    95 bool UIWizardCloneVDPagePathSize::validatePage()
     95bool UIWizardCloneVDPathSizePage::validatePage()
    9696{
    9797    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
     
    107107}
    108108
    109 void UIWizardCloneVDPagePathSize::sltSelectLocationButtonClicked()
     109void UIWizardCloneVDPathSizePage::sltSelectLocationButtonClicked()
    110110{
    111111    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
     
    124124}
    125125
    126 void UIWizardCloneVDPagePathSize::sltMediumPathChanged(const QString &strPath)
     126void UIWizardCloneVDPathSizePage::sltMediumPathChanged(const QString &strPath)
    127127{
    128128    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
     
    136136}
    137137
    138 void UIWizardCloneVDPagePathSize::sltMediumSizeChanged(qulonglong uSize)
     138void UIWizardCloneVDPathSizePage::sltMediumSizeChanged(qulonglong uSize)
    139139{
    140140    UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>();
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPathSizePage.h

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPagePathSize class declaration.
     3 * VBox Qt GUI - UIWizardCloneVDPathSizePage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPagePathSize_h
    19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPagePathSize_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPathSizePage_h
     19#define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPathSizePage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    3636
    3737/** 4th page of the Clone Virtual Disk Image wizard (basic extension): */
    38 class UIWizardCloneVDPagePathSize : public UINativeWizardPage
     38class UIWizardCloneVDPathSizePage : public UINativeWizardPage
    3939{
    4040    Q_OBJECT;
     
    4343
    4444    /** Constructs basic page. */
    45     UIWizardCloneVDPagePathSize(qulonglong uSourceDiskLogicaSize);
     45    UIWizardCloneVDPathSizePage(qulonglong uSourceDiskLogicaSize);
    4646
    4747private slots:
     
    7171};
    7272
    73 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPagePathSize_h */
     73#endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPathSizePage_h */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDVariantPage.cpp

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPageVariant class implementation.
     3 * VBox Qt GUI - UIWizardCloneVDVariantPage class implementation.
    44 */
    55
     
    2121/* GUI includes: */
    2222#include "UIWizardDiskEditors.h"
    23 #include "UIWizardCloneVDPageVariant.h"
     23#include "UIWizardCloneVDVariantPage.h"
    2424#include "UIWizardCloneVD.h"
    2525#include "QIRichTextLabel.h"
     
    2828#include "CMediumFormat.h"
    2929
    30 UIWizardCloneVDPageVariant::UIWizardCloneVDPageVariant()
     30UIWizardCloneVDVariantPage::UIWizardCloneVDVariantPage()
    3131    : m_pDescriptionLabel(0)
    3232    , m_pDynamicLabel(0)
     
    3838}
    3939
    40 void UIWizardCloneVDPageVariant::prepare()
     40void UIWizardCloneVDVariantPage::prepare()
    4141{
    4242    QVBoxLayout *pMainLayout = new QVBoxLayout(this);
     
    6363        pMainLayout->addWidget(m_pVariantGroupBox);
    6464        connect(m_pVariantGroupBox, &UIDiskVariantGroupBox::sigMediumVariantChanged,
    65                 this, &UIWizardCloneVDPageVariant::sltMediumVariantChanged);
     65                this, &UIWizardCloneVDVariantPage::sltMediumVariantChanged);
    6666
    6767    }
     
    7070
    7171
    72 void UIWizardCloneVDPageVariant::retranslateUi()
     72void UIWizardCloneVDVariantPage::retranslateUi()
    7373{
    7474    /* Translate page: */
     
    8989}
    9090
    91 void UIWizardCloneVDPageVariant::initializePage()
     91void UIWizardCloneVDVariantPage::initializePage()
    9292{
    9393    AssertReturnVoid(wizardWindow<UIWizardCloneVD>());
     
    100100}
    101101
    102 bool UIWizardCloneVDPageVariant::isComplete() const
     102bool UIWizardCloneVDVariantPage::isComplete() const
    103103{
    104104    AssertReturn(m_pVariantGroupBox, false);
     
    106106}
    107107
    108 void UIWizardCloneVDPageVariant::setWidgetVisibility(const CMediumFormat &mediumFormat)
     108void UIWizardCloneVDVariantPage::setWidgetVisibility(const CMediumFormat &mediumFormat)
    109109{
    110110    AssertReturnVoid(m_pVariantGroupBox);
     
    120120}
    121121
    122 void UIWizardCloneVDPageVariant::sltMediumVariantChanged(qulonglong uVariant)
     122void UIWizardCloneVDVariantPage::sltMediumVariantChanged(qulonglong uVariant)
    123123{
    124124    if (wizardWindow<UIWizardCloneVD>())
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDVariantPage.h

    r91061 r91062  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardCloneVDPageVariant class declaration.
     3 * VBox Qt GUI - UIWizardCloneVDVariantPage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageVariant_h
    19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageVariant_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDVariantPage_h
     19#define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDVariantPage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    3030class UIDiskVariantGroupBox;
    3131
    32 class UIWizardCloneVDPageVariant : public UINativeWizardPage
     32class UIWizardCloneVDVariantPage : public UINativeWizardPage
    3333{
    3434    Q_OBJECT;
     
    3737
    3838    /** Constructs basic page. */
    39     UIWizardCloneVDPageVariant();
     39    UIWizardCloneVDVariantPage();
    4040
    4141private slots:
     
    6767};
    6868
    69 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPageVariant_h */
     69#endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDVariantPage_h */
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