VirtualBox

Changeset 73615 in vbox


Ignore:
Timestamp:
Aug 10, 2018 1:10:41 PM (6 years ago)
Author:
vboxsync
Message:

build fix for r124258

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp

    r73614 r73615  
    176176{
    177177    /* Make sure field is bool: */
     178    Q_UNUSED(strFieldName);
    178179    AssertMsgReturn(field.isBool(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), false);
    179180    const bool fFieldValue = field.toBool();
     
    187188{
    188189    /* Make sure field is double: */
     190    Q_UNUSED(strFieldName);
    189191    AssertMsgReturn(field.isDouble(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), 0);
    190192    const double dFieldValue = field.toDouble();
     
    198200{
    199201    /* Make sure field is string: */
     202    Q_UNUSED(strFieldName);
    200203    AssertMsgReturn(field.isString(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), QString());
    201204    const QString strFieldValue = field.toString();
     
    209212{
    210213    /* Make sure field is array: */
     214    Q_UNUSED(strFieldName);
    211215    AssertMsgReturn(field.isArray(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), QStringList());
    212216    const QJsonArray fieldValueArray = field.toArray();
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