Hello, I am using qt 4.3.3 with two QTableWidgets. When one cell is selected in a table, I want a corresponding cell to be selected in another table. I have implemented this, but I am not sure which signal to use. I had been using cellClicked, which worked fine, but since I am not clicking both cells (one on each table) with the mouse, how can I get the other one to emit a signal?

If that isn't clear, the basic question is: how do I get a signal to be emitted when using it is mearly "highlighted"? (I don't know if highlighted is the right term). would I use cellActivated? I can't figure out what this signal is supposed to be. It seems to connect properly, but nothing happens.

Thanks again for people's advice!