Exemplo n.º 1
0
int HeaderView::swapSections(lua_State * L) // ( int first, int second )
{
    QHeaderView* obj = QtObject<QHeaderView>::check( L, 1);
	obj->swapSections( Util::toInt( L, 2 ), Util::toInt( L, 3 ) );
	return 0;
}