Я хочу переопределить mouseReleaseEvent с кучей QActions и QMenus...
connect(action1, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action5, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action10, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action25, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
connect(action50, SIGNAL(triggered()), this, SLOT(onStepIncreased()));
Итак, я хочу передать аргумент слоту onStepIncreased
(как вы можете себе представить, это 1,5,10,25,50). Знаете ли вы, как я могу это сделать?