示例#1
0
int HeaderView::visualIndexAt(lua_State * L) // ( int position ) const : int
{
    QHeaderView* obj = QtObject<QHeaderView>::check( L, 1);
	Util::push( L, obj->visualIndexAt( Util::toInt( L, 2) ) );
	return 1;
}