Example #1
0
int TreeView::isRowHidden(lua_State * L) // ( int row, const QModelIndex & parent ) const : bool 
{
    QTreeView* obj = QtObject<QTreeView>::check( L, 1);
    QModelIndex* parent = QtValue<QModelIndex>::check( L, 3 );
	Util::push( L, obj->isRowHidden( Util::toInt( L, 2 ), *parent ) );
	return 1;
}