Index: /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp	(revision 73614)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp	(revision 73615)
@@ -176,4 +176,5 @@
 {
     /* Make sure field is bool: */
+    Q_UNUSED(strFieldName);
     AssertMsgReturn(field.isBool(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), false);
     const bool fFieldValue = field.toBool();
@@ -187,4 +188,5 @@
 {
     /* Make sure field is double: */
+    Q_UNUSED(strFieldName);
     AssertMsgReturn(field.isDouble(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), 0);
     const double dFieldValue = field.toDouble();
@@ -198,4 +200,5 @@
 {
     /* Make sure field is string: */
+    Q_UNUSED(strFieldName);
     AssertMsgReturn(field.isString(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), QString());
     const QString strFieldValue = field.toString();
@@ -209,4 +212,5 @@
 {
     /* Make sure field is array: */
+    Q_UNUSED(strFieldName);
     AssertMsgReturn(field.isArray(), ("Field '%s' has wrong structure!", strFieldName.toUtf8().constData()), QStringList());
     const QJsonArray fieldValueArray = field.toArray();
