How can I get the previous and current items sent by a signal QTableWidget::currentItemChanged?
Solved
General and Desktop
-
I currently have the table widget connected to a void slot called onCurrentItemChanged() but I want to know the previous and the current items... how can I access that information from the slot? What signature do I need the slot to have?
Thanks!
like the signal
onCurrentItemChanged(QTableWidgetItem *current, QTableWidgetItem *previous) -