| 396 | } |
| 397 | |
| 398 | void FramePlaybackWindow::seqTableCellClicked(int row, int col) |
| 399 | { |
| 400 | qDebug() << "Row: " << QString::number(row) << " Col: " << QString::number(col); |
| 401 | if (currentSeqNum != row) |
| 402 | { |
| 403 | currentSeqNum = row; |
| 404 | currentSeqItem = &seqItems[row]; |
| 405 | refreshIDList(); |
| 406 | } |
| 407 | } |
| 408 | |
| 409 | void FramePlaybackWindow::seqTableCellChanged(int row,int col) |
| 410 | { |
nothing calls this directly
no outgoing calls
no test coverage detected