VirtualBox

Changeset 91061 in vbox for trunk/src/VBox


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

FE/Qt: bugref:9996. Renaming newvd wizard classes

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

Legend:

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

    r91060 r91061  
    921921        src/wizards/editors/UIWizardDiskEditors.h \
    922922        src/wizards/newvd/UIWizardNewVD.h \
    923         src/wizards/newvd/UIWizardNewVDPageFileType.h \
    924         src/wizards/newvd/UIWizardNewVDPageVariant.h \
    925         src/wizards/newvd/UIWizardNewVDPageSizeLocation.h \
    926         src/wizards/newvd/UIWizardNewVDPageExpert.h
     923        src/wizards/newvd/UIWizardNewVDFileTypePage.h \
     924        src/wizards/newvd/UIWizardNewVDVariantPage.h \
     925        src/wizards/newvd/UIWizardNewVDSizeLocationPage.h \
     926        src/wizards/newvd/UIWizardNewVDExpertPage.h
    927927
    928928ifdef VBOX_WITH_QHELP_VIEWER
     
    14781478        src/wizards/editors/UIWizardDiskEditors.cpp \
    14791479        src/wizards/newvd/UIWizardNewVD.cpp \
    1480         src/wizards/newvd/UIWizardNewVDPageFileType.cpp \
    1481         src/wizards/newvd/UIWizardNewVDPageVariant.cpp \
    1482         src/wizards/newvd/UIWizardNewVDPageSizeLocation.cpp \
    1483         src/wizards/newvd/UIWizardNewVDPageExpert.cpp
     1480        src/wizards/newvd/UIWizardNewVDFileTypePage.cpp \
     1481        src/wizards/newvd/UIWizardNewVDVariantPage.cpp \
     1482        src/wizards/newvd/UIWizardNewVDSizeLocationPage.cpp \
     1483        src/wizards/newvd/UIWizardNewVDExpertPage.cpp
    14841484
    14851485ifdef VBOX_WITH_QHELP_VIEWER
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.cpp

    r91035 r91061  
    2121#include "UINotificationCenter.h"
    2222#include "UIWizardNewVD.h"
    23 #include "UIWizardNewVDPageFileType.h"
    24 #include "UIWizardNewVDPageVariant.h"
    25 #include "UIWizardNewVDPageSizeLocation.h"
    26 #include "UIWizardNewVDPageExpert.h"
     23#include "UIWizardNewVDFileTypePage.h"
     24#include "UIWizardNewVDVariantPage.h"
     25#include "UIWizardNewVDSizeLocationPage.h"
     26#include "UIWizardNewVDExpertPage.h"
    2727
    2828UIWizardNewVD::UIWizardNewVD(QWidget *pParent,
     
    9494        case WizardMode_Basic:
    9595        {
    96             addPage(new UIWizardNewVDPageFileType);
    97             m_iMediumVariantPageIndex = addPage(new UIWizardNewVDPageVariant);
    98             addPage(new UIWizardNewVDPageSizeLocation(m_strDefaultName, m_strDefaultPath, m_uDefaultSize));
     96            addPage(new UIWizardNewVDFileTypePage);
     97            m_iMediumVariantPageIndex = addPage(new UIWizardNewVDVariantPage);
     98            addPage(new UIWizardNewVDSizeLocationPage(m_strDefaultName, m_strDefaultPath, m_uDefaultSize));
    9999            break;
    100100        }
    101101        case WizardMode_Expert:
    102102        {
    103             addPage(new UIWizardNewVDPageExpert(m_strDefaultName, m_strDefaultPath, m_uDefaultSize));
     103            addPage(new UIWizardNewVDExpertPage(m_strDefaultName, m_strDefaultPath, m_uDefaultSize));
    104104            break;
    105105        }
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.h

    r91041 r91061  
    7171    QString m_strMediumPath;
    7272    qulonglong m_uMediumSize;
    73 
    74 
    7573    QString     m_strDefaultName;
    7674    QString     m_strDefaultPath;
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDExpertPage.cpp

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageExpert class implementation.
     3 * VBox Qt GUI - UIWizardNewVDExpertPage class implementation.
    44 */
    55
     
    2222/* GUI includes: */
    2323#include "UIWizardDiskEditors.h"
    24 #include "UIWizardNewVDPageExpert.h"
     24#include "UIWizardNewVDExpertPage.h"
    2525#include "UIWizardNewVD.h"
    2626#include "UICommon.h"
     
    3030#include "CSystemProperties.h"
    3131
    32 UIWizardNewVDPageExpert::UIWizardNewVDPageExpert(const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize)
     32UIWizardNewVDExpertPage::UIWizardNewVDExpertPage(const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize)
    3333    : UINativeWizardPage()
    3434    , m_pSizeAndPathGroup(0)
     
    4444}
    4545
    46 void UIWizardNewVDPageExpert::prepare()
     46void UIWizardNewVDExpertPage::prepare()
    4747{
    4848    QGridLayout *pMainLayout = new QGridLayout(this);
     
    5656
    5757    connect(m_pFormatGroup, &UIDiskFormatsGroupBox::sigMediumFormatChanged,
    58             this, &UIWizardNewVDPageExpert::sltMediumFormatChanged);
     58            this, &UIWizardNewVDExpertPage::sltMediumFormatChanged);
    5959    connect(m_pVariantGroup, &UIDiskVariantGroupBox::sigMediumVariantChanged,
    60             this, &UIWizardNewVDPageExpert::sltMediumVariantChanged);
     60            this, &UIWizardNewVDExpertPage::sltMediumVariantChanged);
    6161    connect(m_pSizeAndPathGroup, &UIMediumSizeAndPathGroupBox::sigMediumLocationButtonClicked,
    62             this, &UIWizardNewVDPageExpert::sltSelectLocationButtonClicked);
     62            this, &UIWizardNewVDExpertPage::sltSelectLocationButtonClicked);
    6363    connect(m_pSizeAndPathGroup, &UIMediumSizeAndPathGroupBox::sigMediumSizeChanged,
    64             this, &UIWizardNewVDPageExpert::sltMediumSizeChanged);
     64            this, &UIWizardNewVDExpertPage::sltMediumSizeChanged);
    6565    connect(m_pSizeAndPathGroup, &UIMediumSizeAndPathGroupBox::sigMediumPathChanged,
    66             this, &UIWizardNewVDPageExpert::sltMediumPathChanged);
     66            this, &UIWizardNewVDExpertPage::sltMediumPathChanged);
    6767
    6868    retranslateUi();
    6969}
    7070
    71 void UIWizardNewVDPageExpert::sltMediumSizeChanged(qulonglong uSize)
     71void UIWizardNewVDExpertPage::sltMediumSizeChanged(qulonglong uSize)
    7272{
    7373    AssertReturnVoid(wizardWindow<UIWizardNewVD>());
     
    7676}
    7777
    78 void UIWizardNewVDPageExpert::sltMediumPathChanged(const QString &strPath)
     78void UIWizardNewVDExpertPage::sltMediumPathChanged(const QString &strPath)
    7979{
    8080    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    8787}
    8888
    89 void UIWizardNewVDPageExpert::sltMediumVariantChanged(qulonglong uVariant)
     89void UIWizardNewVDExpertPage::sltMediumVariantChanged(qulonglong uVariant)
    9090{
    9191    AssertReturnVoid(wizardWindow<UIWizardNewVD>());
     
    9494}
    9595
    96 void UIWizardNewVDPageExpert::sltMediumFormatChanged()
     96void UIWizardNewVDExpertPage::sltMediumFormatChanged()
    9797{
    9898    AssertReturnVoid(m_pFormatGroup);
     
    103103}
    104104
    105 void UIWizardNewVDPageExpert::sltSelectLocationButtonClicked()
     105void UIWizardNewVDExpertPage::sltSelectLocationButtonClicked()
    106106{
    107107    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    121121}
    122122
    123 void UIWizardNewVDPageExpert::retranslateUi()
    124 {
    125 }
    126 
    127 void UIWizardNewVDPageExpert::initializePage()
     123void UIWizardNewVDExpertPage::retranslateUi()
     124{
     125}
     126
     127void UIWizardNewVDExpertPage::initializePage()
    128128{
    129129    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    158158}
    159159
    160 bool UIWizardNewVDPageExpert::isComplete() const
     160bool UIWizardNewVDExpertPage::isComplete() const
    161161{
    162162    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    173173}
    174174
    175 bool UIWizardNewVDPageExpert::validatePage()
     175bool UIWizardNewVDExpertPage::validatePage()
    176176{
    177177    bool fResult = true;
     
    201201}
    202202
    203 void UIWizardNewVDPageExpert::updateDiskWidgetsAfterMediumFormatChange()
     203void UIWizardNewVDExpertPage::updateDiskWidgetsAfterMediumFormatChange()
    204204{
    205205    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDExpertPage.h

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageExpert class declaration.
     3 * VBox Qt GUI - UIWizardNewVDExpertPage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageExpert_h
    19 #define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageExpert_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDExpertPage_h
     19#define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDExpertPage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    3131
    3232/** Expert page of the New Virtual Hard Drive wizard. */
    33 class SHARED_LIBRARY_STUFF UIWizardNewVDPageExpert : public UINativeWizardPage
     33class SHARED_LIBRARY_STUFF UIWizardNewVDExpertPage : public UINativeWizardPage
    3434{
    3535    Q_OBJECT;
     
    3737public:
    3838
    39     UIWizardNewVDPageExpert(const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize);
     39    UIWizardNewVDExpertPage(const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize);
    4040
    4141private slots:
     
    7878};
    7979
    80 #endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageExpert_h */
     80#endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDExpertPage_h */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDFileTypePage.cpp

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageFileType class implementation.
     3 * VBox Qt GUI - UIWizardNewVDFileTypePage class implementation.
    44 */
    55
     
    2121/* GUI includes: */
    2222#include "UIWizardDiskEditors.h"
    23 #include "UIWizardNewVDPageFileType.h"
     23#include "UIWizardNewVDFileTypePage.h"
    2424#include "UIWizardNewVD.h"
    2525#include "QIRichTextLabel.h"
    2626
    27 UIWizardNewVDPageFileType::UIWizardNewVDPageFileType()
     27UIWizardNewVDFileTypePage::UIWizardNewVDFileTypePage()
    2828    : m_pLabel(0)
    2929    , m_pFormatButtonGroup(0)
     
    3232}
    3333
    34 void UIWizardNewVDPageFileType::prepare()
     34void UIWizardNewVDFileTypePage::prepare()
    3535{
    3636    QVBoxLayout *pMainLayout = new QVBoxLayout(this);
     
    4242    pMainLayout->addStretch();
    4343    connect(m_pFormatButtonGroup, &UIDiskFormatsGroupBox::sigMediumFormatChanged,
    44             this, &UIWizardNewVDPageFileType::sltMediumFormatChanged);
     44            this, &UIWizardNewVDFileTypePage::sltMediumFormatChanged);
    4545    retranslateUi();
    4646}
    4747
    48 void UIWizardNewVDPageFileType::sltMediumFormatChanged()
     48void UIWizardNewVDFileTypePage::sltMediumFormatChanged()
    4949{
    5050    AssertReturnVoid(m_pFormatButtonGroup);
     
    5353}
    5454
    55 void UIWizardNewVDPageFileType::retranslateUi()
     55void UIWizardNewVDFileTypePage::retranslateUi()
    5656{
    5757    setTitle(UIWizardNewVD::tr("Virtual Hard disk file type"));
     
    6161}
    6262
    63 void UIWizardNewVDPageFileType::initializePage()
     63void UIWizardNewVDFileTypePage::initializePage()
    6464{
    6565    AssertReturnVoid(wizardWindow<UIWizardNewVD>());
     
    6969}
    7070
    71 bool UIWizardNewVDPageFileType::isComplete() const
     71bool UIWizardNewVDFileTypePage::isComplete() const
    7272{
    7373    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDFileTypePage.h

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageFileType class declaration.
     3 * VBox Qt GUI - UIWizardNewVDFileTypePage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageFileType_h
    19 #define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageFileType_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDFileTypePage_h
     19#define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDFileTypePage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    3030
    3131/** 1st page of the New Virtual Hard Drive wizard (basic extension). */
    32 class SHARED_LIBRARY_STUFF UIWizardNewVDPageFileType : public UINativeWizardPage
     32class SHARED_LIBRARY_STUFF UIWizardNewVDFileTypePage : public UINativeWizardPage
    3333{
    3434    Q_OBJECT;
     
    3737
    3838    /** Constructor. */
    39     UIWizardNewVDPageFileType();
     39    UIWizardNewVDFileTypePage();
    4040
    4141private slots:
     
    5757
    5858
    59 #endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageFileType_h */
     59#endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDFileTypePage_h */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDSizeLocationPage.cpp

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageSizeLocation class implementation.
     3 * VBox Qt GUI - UIWizardNewVDSizeLocationPage class implementation.
    44 */
    55
     
    2121
    2222/* GUI includes: */
    23 #include "UIWizardNewVDPageSizeLocation.h"
     23#include "UIWizardNewVDSizeLocationPage.h"
    2424#include "UIWizardNewVD.h"
    2525#include "UICommon.h"
     
    3030#include "CSystemProperties.h"
    3131
    32 UIWizardNewVDPageSizeLocation::UIWizardNewVDPageSizeLocation(const QString &strDefaultName,
     32UIWizardNewVDSizeLocationPage::UIWizardNewVDSizeLocationPage(const QString &strDefaultName,
    3333                                                             const QString &strDefaultPath, qulonglong uDefaultSize)
    3434    : m_pMediumSizePathGroup(0)
     
    4242}
    4343
    44 void UIWizardNewVDPageSizeLocation::prepare()
     44void UIWizardNewVDSizeLocationPage::prepare()
    4545{
    4646    QVBoxLayout *pMainLayout = new QVBoxLayout(this);
     
    4848    m_pMediumSizePathGroup = new UIMediumSizeAndPathGroupBox(false /* fExpertMode */, 0 /* parent */, _4M /* minimum size */);
    4949    connect(m_pMediumSizePathGroup, &UIMediumSizeAndPathGroupBox::sigMediumSizeChanged,
    50             this, &UIWizardNewVDPageSizeLocation::sltMediumSizeChanged);
     50            this, &UIWizardNewVDSizeLocationPage::sltMediumSizeChanged);
    5151    connect(m_pMediumSizePathGroup, &UIMediumSizeAndPathGroupBox::sigMediumPathChanged,
    52             this, &UIWizardNewVDPageSizeLocation::sltMediumPathChanged);
     52            this, &UIWizardNewVDSizeLocationPage::sltMediumPathChanged);
    5353    connect(m_pMediumSizePathGroup, &UIMediumSizeAndPathGroupBox::sigMediumLocationButtonClicked,
    54             this, &UIWizardNewVDPageSizeLocation::sltSelectLocationButtonClicked);
     54            this, &UIWizardNewVDSizeLocationPage::sltSelectLocationButtonClicked);
    5555    pMainLayout->addWidget(m_pMediumSizePathGroup);
    5656    pMainLayout->addStretch();
     
    5858}
    5959
    60 void UIWizardNewVDPageSizeLocation::sltSelectLocationButtonClicked()
     60void UIWizardNewVDSizeLocationPage::sltSelectLocationButtonClicked()
    6161{
    6262    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    7575}
    7676
    77 void UIWizardNewVDPageSizeLocation::sltMediumSizeChanged(qulonglong uSize)
     77void UIWizardNewVDSizeLocationPage::sltMediumSizeChanged(qulonglong uSize)
    7878{
    7979    AssertReturnVoid(wizardWindow<UIWizardNewVD>());
     
    8383}
    8484
    85 void UIWizardNewVDPageSizeLocation::sltMediumPathChanged(const QString &strPath)
     85void UIWizardNewVDSizeLocationPage::sltMediumPathChanged(const QString &strPath)
    8686{
    8787    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    9595}
    9696
    97 void UIWizardNewVDPageSizeLocation::retranslateUi()
     97void UIWizardNewVDSizeLocationPage::retranslateUi()
    9898{
    9999    setTitle(UIWizardNewVD::tr("File location and size"));
    100100}
    101101
    102 void UIWizardNewVDPageSizeLocation::initializePage()
     102void UIWizardNewVDSizeLocationPage::initializePage()
    103103{
    104104    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    126126}
    127127
    128 bool UIWizardNewVDPageSizeLocation::isComplete() const
     128bool UIWizardNewVDSizeLocationPage::isComplete() const
    129129{
    130130    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    137137}
    138138
    139 bool UIWizardNewVDPageSizeLocation::validatePage()
     139bool UIWizardNewVDSizeLocationPage::validatePage()
    140140{
    141141    bool fResult = true;
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDSizeLocationPage.h

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageSizeLocation class declaration.
     3 * VBox Qt GUI - UIWizardNewVDSizeLocationPage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageSizeLocation_h
    19 #define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageSizeLocation_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDSizeLocationPage_h
     19#define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDSizeLocationPage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    2828class UIMediumSizeAndPathGroupBox;
    2929
    30 class SHARED_LIBRARY_STUFF UIWizardNewVDPageSizeLocation : public UINativeWizardPage
     30class SHARED_LIBRARY_STUFF UIWizardNewVDSizeLocationPage : public UINativeWizardPage
    3131{
    3232    Q_OBJECT;
     
    3434public:
    3535
    36     UIWizardNewVDPageSizeLocation(const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize);
     36    UIWizardNewVDSizeLocationPage(const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize);
    3737
    3838private slots:
     
    6060
    6161
    62 #endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageSizeLocation_h */
     62#endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDSizeLocationPage_h */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDVariantPage.cpp

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageVariant class implementation.
     3 * VBox Qt GUI - UIWizardNewVDVariantPage class implementation.
    44 */
    55
     
    2121/* GUI includes: */
    2222#include "UIWizardDiskEditors.h"
    23 #include "UIWizardNewVDPageVariant.h"
     23#include "UIWizardNewVDVariantPage.h"
    2424#include "UIWizardNewVD.h"
    2525#include "QIRichTextLabel.h"
     
    2828#include "CMediumFormat.h"
    2929
    30 UIWizardNewVDPageVariant::UIWizardNewVDPageVariant()
     30UIWizardNewVDVariantPage::UIWizardNewVDVariantPage()
    3131    : m_pDescriptionLabel(0)
    3232    , m_pDynamicLabel(0)
     
    3838}
    3939
    40 void UIWizardNewVDPageVariant::prepare()
     40void UIWizardNewVDVariantPage::prepare()
    4141{
    4242    QVBoxLayout *pMainLayout = new QVBoxLayout(this);
     
    5858
    5959    connect(m_pVariantGroupBox, &UIDiskVariantGroupBox::sigMediumVariantChanged,
    60             this, &UIWizardNewVDPageVariant::sltMediumVariantChanged);
     60            this, &UIWizardNewVDVariantPage::sltMediumVariantChanged);
    6161    retranslateUi();
    6262}
    6363
    64 void UIWizardNewVDPageVariant::retranslateUi()
     64void UIWizardNewVDVariantPage::retranslateUi()
    6565{
    6666    setTitle(UIWizardNewVD::tr("Storage on physical hard disk"));
     
    8383}
    8484
    85 void UIWizardNewVDPageVariant::initializePage()
     85void UIWizardNewVDVariantPage::initializePage()
    8686{
    8787    UIWizardNewVD *pWizard = wizardWindow<UIWizardNewVD>();
     
    9292}
    9393
    94 bool UIWizardNewVDPageVariant::isComplete() const
     94bool UIWizardNewVDVariantPage::isComplete() const
    9595{
    9696    if (m_pVariantGroupBox && m_pVariantGroupBox->mediumVariant() != (qulonglong)KMediumVariant_Max)
     
    9999}
    100100
    101 void UIWizardNewVDPageVariant::setWidgetVisibility(const CMediumFormat &mediumFormat)
     101void UIWizardNewVDVariantPage::setWidgetVisibility(const CMediumFormat &mediumFormat)
    102102{
    103103    AssertReturnVoid(m_pVariantGroupBox);
     
    111111}
    112112
    113 void UIWizardNewVDPageVariant::sltMediumVariantChanged(qulonglong uVariant)
     113void UIWizardNewVDVariantPage::sltMediumVariantChanged(qulonglong uVariant)
    114114{
    115115    AssertReturnVoid(wizardWindow<UIWizardNewVD>());
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDVariantPage.h

    r91060 r91061  
    11/* $Id$ */
    22/** @file
    3  * VBox Qt GUI - UIWizardNewVDPageVariant class declaration.
     3 * VBox Qt GUI - UIWizardNewVDVariantPage class declaration.
    44 */
    55
     
    1616 */
    1717
    18 #ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageVariant_h
    19 #define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageVariant_h
     18#ifndef FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDVariantPage_h
     19#define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDVariantPage_h
    2020#ifndef RT_WITHOUT_PRAGMA_ONCE
    2121# pragma once
     
    3030class UIDiskVariantGroupBox;
    3131
    32 class SHARED_LIBRARY_STUFF UIWizardNewVDPageVariant : public UINativeWizardPage
     32class SHARED_LIBRARY_STUFF UIWizardNewVDVariantPage : public UINativeWizardPage
    3333{
    3434    Q_OBJECT;
     
    3636public:
    3737
    38     UIWizardNewVDPageVariant();
     38    UIWizardNewVDVariantPage();
    3939
    4040private slots:
     
    5757};
    5858
    59 #endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDPageVariant_h */
     59#endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDVariantPage_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