Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 3.4.0-rc1
-
None
-
dbb9891f43291e3ffd015f3cc84d9389d01e170e
Description
#include <QAction> #include <QPointer> #include <QObject> class Class : public QObject { Q_OBJECT private slots: void slot() {} void func() { QPointer<QAction> action; connect(action, SIGNAL(triggered()), this, SLOT(slot())); } };