Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.6.2
-
N97 sdk and Qt 4.6.2
Description
Tooltip does not appear to screen with following code:
#include <QTooltip>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
test w;
w.show();
QString string("tool tip");
QPoint pos(100,160);
QToolTip::showText(pos,string);
return a.exec();
}
Also tried to set tooltip to QPushButton but it wont either appear.
Tested with N97 sdk Qt 4.6.2