Changeset 73338 in vbox
- Timestamp:
- Jul 23, 2018 10:22:16 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic4.cpp
r73337 r73338 176 176 { 177 177 /* Make sure field is bool: */ 178 178 // AssertMsgReturn(field.isBool(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), false); 179 179 180 180 const bool fFieldValue = field.toBool(); … … 188 188 { 189 189 /* Make sure field is double: */ 190 190 // AssertMsgReturn(field.isDouble(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), 0); 191 191 192 192 const double dFieldValue = field.toDouble(); … … 200 200 { 201 201 /* Make sure field is string: */ 202 202 // AssertMsgReturn(field.isString(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), QString()); 203 203 204 204 const QString strFieldValue = field.toString(); … … 212 212 { 213 213 /* Make sure field is array: */ 214 214 // AssertMsgReturn(field.isArray(), ("Item '%s' has wrong structure!", strFieldName.toUtf8().constData()), QStringList()); 215 215 216 216 const QJsonArray fieldValueArray = field.toArray();
Note:
See TracChangeset
for help on using the changeset viewer.