QObject* QtjambiDeclarativeListProperty::at(int index){ if(canAt()){ return QDeclarativeListProperty::at(this, index); }else{ return Q_NULLPTR; } }
bool QtJambiShell_QDeclarativeListProperty::__override_canAt(bool static_call) { if (static_call) { return QtjambiDeclarativeListProperty::canAt(); } else { return canAt(); } }
/*! Returns the list element at \a index, or 0 if the operation failed. \sa canAt() */ QObject *QDeclarativeListReference::at(int index) const { if (!canAt()) return 0; return d->property.at(&d->property, index); }