mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 19:39:43 +02:00
line indention fixes
This commit is contained in:
parent
bacad6bcd2
commit
fd21d100f6
1 changed files with 12 additions and 12 deletions
|
@ -266,10 +266,10 @@ QScriptValue WindowScriptingInterface::doPeekNonBlockingFormResult(QScriptValue
|
||||||
} else if (item.property("options").isArray()) {
|
} else if (item.property("options").isArray()) {
|
||||||
c += 1;
|
c += 1;
|
||||||
item.setProperty("value",
|
item.setProperty("value",
|
||||||
_combos.at(c)->currentIndex() < item.property("options").property("length").toInt32() ?
|
_combos.at(c)->currentIndex() < item.property("options").property("length").toInt32() ?
|
||||||
item.property("options").property(_combos.at(c)->currentIndex()) :
|
item.property("options").property(_combos.at(c)->currentIndex()) :
|
||||||
array.engine()->undefinedValue()
|
array.engine()->undefinedValue()
|
||||||
);
|
);
|
||||||
_form.setProperty(i, item);
|
_form.setProperty(i, item);
|
||||||
} else {
|
} else {
|
||||||
e += 1;
|
e += 1;
|
||||||
|
@ -323,10 +323,10 @@ QScriptValue WindowScriptingInterface::doGetNonBlockingFormResult(QScriptValue a
|
||||||
} else if (item.property("options").isArray()) {
|
} else if (item.property("options").isArray()) {
|
||||||
c += 1;
|
c += 1;
|
||||||
item.setProperty("value",
|
item.setProperty("value",
|
||||||
_combos.at(c)->currentIndex() < item.property("options").property("length").toInt32() ?
|
_combos.at(c)->currentIndex() < item.property("options").property("length").toInt32() ?
|
||||||
item.property("options").property(_combos.at(c)->currentIndex()) :
|
item.property("options").property(_combos.at(c)->currentIndex()) :
|
||||||
array.engine()->undefinedValue()
|
array.engine()->undefinedValue()
|
||||||
);
|
);
|
||||||
_form.setProperty(i, item);
|
_form.setProperty(i, item);
|
||||||
} else {
|
} else {
|
||||||
e += 1;
|
e += 1;
|
||||||
|
@ -401,10 +401,10 @@ QScriptValue WindowScriptingInterface::showForm(const QString& title, QScriptVal
|
||||||
} else if (item.property("options").isArray()) {
|
} else if (item.property("options").isArray()) {
|
||||||
c += 1;
|
c += 1;
|
||||||
item.setProperty("value",
|
item.setProperty("value",
|
||||||
_combos.at(c)->currentIndex() < item.property("options").property("length").toInt32() ?
|
_combos.at(c)->currentIndex() < item.property("options").property("length").toInt32() ?
|
||||||
item.property("options").property(_combos.at(c)->currentIndex()) :
|
item.property("options").property(_combos.at(c)->currentIndex()) :
|
||||||
form.engine()->undefinedValue()
|
form.engine()->undefinedValue()
|
||||||
);
|
);
|
||||||
form.setProperty(i, item);
|
form.setProperty(i, item);
|
||||||
} else {
|
} else {
|
||||||
e += 1;
|
e += 1;
|
||||||
|
|
Loading…
Reference in a new issue