someQObject['someOverloadedSlot(int)']( "10" ); // calls the int overload; the argument is converted to an int someQObject['someOverloadedSlot(QString)']( 10 ); // calls the QString overload; the argument is converted to a string