line indention fixes

This commit is contained in:
Thijs Wenker 2014-09-30 22:37:29 +02:00
parent bacad6bcd2
commit fd21d100f6

View file

@ -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;