Qt 多信号顺序问题:
5.4在Qt的xchat频道看到的提问:
xVim:
Hi. I have a QTableWidget and delete a selected row from it. Therefore, the itemSelectionChanged signal is triggered, which is connected to my slot s. Why does QTableWidget.rowCount() inside that custom slot s give the wrong number of table entries (the number before the deletion)?Hi