hi all,
i want to get the name of the table whose item generated the signal.
i used
Qt Code:
  1. QtableWidgetItem *i;
  2. i->tableWidget();
To copy to clipboard, switch view to plain text mode 

this returns the table widget whose cell generated the signal. But i want to see in a popup menu


Qt Code:
  1. QMessageBox::information(this,"table",i->tableWidget());
To copy to clipboard, switch view to plain text mode 

so this generates error as the third parameter needs to be QString. How can i make it QString?