VirtualBox

Ignore:
Timestamp:
Jun 3, 2019 12:47:42 PM (6 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9434: Import Appliance wizard: Form Editor widget: A bit of cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIFormEditorWidget.cpp

    r78895 r78934  
    5858
    5959    /** Constructs null choice data. */
    60     ChoiceData() {}
     60    ChoiceData()
     61        : m_iSelectedIndex(-1) {}
    6162    /** Constructs choice data on the basis of passed @a values and @a iSelectedIndex. */
    6263    ChoiceData(const QVector<QString> &values, int iSelectedIndex)
     
    101102
    102103    /** Constructs null ranged-integer data. */
    103     RangedIntegerData() {}
     104    RangedIntegerData()
     105        : m_iMinimum(-1), m_iMaximum(-1), m_iInteger(-1) {}
    104106    /** Constructs ranged-integer data on the basis of passed @a iMinimum, @a iMaximum and @a iInteger. */
    105107    RangedIntegerData(int iMinimum, int iMaximum, int iInteger)
     
    804806                    {
    805807                        case KFormValueType_String:
     808                        {
    806809                            m_dataList[index.row()]->setString(value.toString());
    807810                            emit dataChanged(index, index);
    808811                            updateGeneration();
    809812                            return true;
     813                        }
    810814                        case KFormValueType_Choice:
     815                        {
    811816                            m_dataList[index.row()]->setChoice(value.value<ChoiceData>());
    812817                            emit dataChanged(index, index);
    813818                            updateGeneration();
    814819                            return true;
     820                        }
    815821                        case KFormValueType_RangedInteger:
     822                        {
    816823                            m_dataList[index.row()]->setRangedInteger(value.value<RangedIntegerData>());
    817824                            emit dataChanged(index, index);
    818825                            updateGeneration();
    819826                            return true;
     827                        }
    820828                        default:
    821829                            return false;
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