Я хочу перевизначити 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). Ви знаєте, як я можу це зробити?