[Harmattan] qDebug() is not working after QFeedbackHapticsEffect constructor - How to report the bug?
-
Yesterday after add the QFeedbackHapticsEffect to my application qDebug stop to works after search I found a bug report https://bugreports.qt-project.org/browse/QTBUG-21345 and the solution for it was to report the bug at https://harmattan-bugs.nokia.com/ but when I clikc File a Bug I got the message: "Either no products have been defined to enter bugs against or you have not been given access to any."
@#include <QtGui/QApplication>
#include <QtFeedback/QFeedbackHapticsEffect>
#include <QDebug>QTM_USE_NAMESPACE
int main(int argc, char *argv[])
{QApplication app(argc, argv); qDebug() << "before QFeedbackHapticsEffect constructor"; QFeedbackHapticsEffect rumble; qDebug() << "after QFeedbackHapticsEffect constructor"; return app.exec();
}
@