Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
Qt Creator 4.6.1, Qt Creator 4.8.0-rc1
-
Windows, Linux
Description
If you try to Ctrl+Click, F2, or use the context menu to follow _q_onViewCurrentIndexChanged(), it won't work:
QObject::connect(view, SIGNAL(currentIndexChanged()), q, SLOT(_q_onViewCurrentIndexChanged()));
A function without underscores works:
QObject::connect(view, SIGNAL(currentItemChanged()), q, SIGNAL(currentItemChanged()));
Attachments
Issue Links
- relates to
-
QTCREATORBUG-20737 Autocompletion does not work in SIGNAL() and SLOT()
- Closed