QTableWidget中的信号函数cellClicked ( int row, int column )怎么不起作用
在程序中使用了QTableWidget类,它里面有个信号函数是这样定义的,void QTableWidget::cellClicked ( int row, int column ) [signal]This signal is emitted whenever a cell in the table is clicked. The row and column specified is the cell that was clicked.我在程序中,建立了如下的信号和槽的连接connect(tableWidget,SIGNAL(cellClicked(0,0)),this,SLOT(cellselect()));但是发现点击第一格时,没有调用cellselect()函数,请问一下,难道是我这样使用不对吗,程序中其它信号和槽的连接是没问题的