connect(ui.tree, SIGNAL(itemClicked (tables,0)), this, SLOT(selectTable()))
connect(ui.tree, SIGNAL(itemClicked (tables,0)), this, SLOT(selectTable()))
To copy to clipboard, switch view to plain text mode
You can't set values in connect statements. You should use types there.
Try this:
connect(ui.
tree,
SIGNAL(itemClicked
(QTreeWidgetItem*,
int)),
this,
SLOT(selectTable
()))
connect(ui.tree, SIGNAL(itemClicked (QTreeWidgetItem*,int)), this, SLOT(selectTable()))
To copy to clipboard, switch view to plain text mode
Bookmarks