hi, i am having some issues, by reading values from tableWidget.

GuiApp.h
Qt Code:
  1. //..
  2. private:
  3. Ui::GuiAppClass ui;
  4. private slots:
  5. void getTableItemSelected(int,int);
To copy to clipboard, switch view to plain text mode 

GuiApp.cpp
Qt Code:
  1. GuiApp::GuiApp(QWidget *parent, Qt::WFlags flags)
  2. : QMainWindow(parent, flags)
  3. {
  4. //..
  5. ui.setupUi(this);
  6. connect(ui.tableWidget, SIGNAL(cellClicked(int,int)),
  7. this, SLOT (getTableItemSelected(int,int)));
  8. }
  9.  
  10. //..
  11. void GuiApp::getTableItemSelected(int row, int col)
  12. {
  13. QTableWidgetItem *locale = ui.tableWidget->item(row, col);
  14. QString text = locale->text();
  15. qDebug("Row %i Col %i Value: %s", row, col, text);
  16. }
To copy to clipboard, switch view to plain text mode 
The table "prints" the values like 3 23 45. But i read this symbols..
Output:
Row 0 Col 0 Value: ♦
Row 0 Col 1 Value: ♥
Row 0 Col 2 Value: ♦

What's the problem?

Thanks in advance.