mirror of
https://github.com/lubosz/overte.git
synced 2025-04-18 04:18:17 +02:00
cleared comment
This commit is contained in:
parent
9ba2a9736c
commit
7f34079d8f
1 changed files with 1 additions and 1 deletions
|
@ -512,7 +512,7 @@ QDialog* WindowScriptingInterface::createForm(const QString& title, QScriptValue
|
|||
} else if (item.property("options").isArray()) {
|
||||
QComboBox* combo = new QComboBox();
|
||||
combo->setMinimumWidth(200);
|
||||
qint32 options_count = item.property("options").property("length").toInt32();// .toJsonArray();
|
||||
qint32 options_count = item.property("options").property("length").toInt32();
|
||||
for (qint32 i = 0; i < options_count; i++) {
|
||||
combo->addItem(item.property("options").property(i).toString());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue