01-18-2013 01:36 AM
I had this issue for awhile but ignored it since it worked. But since 10.9.9.339 I don't get any events and now its a big problem. What is wrong with the triggered signal of the ListView? Has it beed renamed?
01-18-2013 03:38 PM
Best way to see is to check headers as documentation might be outdated.
01-18-2013 04:17 PM
Perhaps it is a quirk of momentics but apparently writing something like this
ListView *my_list = ...->findChild<ListView*>("my_list");
QObject::connect(my_list, SIGNAL(triggered(QVariantList)), ...
is wrong (appears as error) but this
this->my_list = ...->findChild<ListView*>("my_list");
QObject::connect(this->my_list, SIGNAL(triggered(QVariantList)), ...
is not marked as error.
01-21-2013 10:47 AM
How do you declare my_list in later case?
01-21-2013 11:09 AM
Simply as a private instance variable:
private: ListView *my_list;