I have a tableview and I'm trying to get onactivated to work but it does not fire and I get:
Object::connect: No such slot MainWindowImpl::rowActived(QModelIndex)
This is my code:
mainwindowimpl.h :
mainwindowimpl.cpp in constructor:Code:
{ Q_OBJECT .private slots:
The event
Code:
{ qDebug() << "activate" << index.row(); }
Putting the const and & into the connect() call makes no difference, besides, all other events fire without the const and & in their connects.
No idea what this is. Help appreciated.