I am not sure if I get you right, but when you have a table inside an other widget and you want to access the table you have to provide a) a function which returns a pointer the the table, with which you can alter the table or b) (much better) provide setter functions like:
Qt Code:
  1. void YourWidget::setItem ( int row, int column, QTableWidgetItem * item )
  2. {
  3. m_InternalPointerToYourTable->setItem(row, column, item);
  4. }
To copy to clipboard, switch view to plain text mode