OK, I've installed Qt 4.6.3 now (still using Symbian^3) and I'm getting the same problem.
I create a Qt GUI Main Window project, it builds fine, but when I run it I get a KERN-EXEC 3 error when it tries to create the status bar.
This is the auto-generated code:
Code:
void setupUi(QMainWindow *TestingQt)
{
if (TestingQt->objectName().isEmpty())
TestingQt->setObjectName(QString::fromUtf8("TestingQt"));
TestingQt->resize(800, 600);
centralwidget = new QWidget(TestingQt);
centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
TestingQt->setCentralWidget(centralwidget);
menubar = new QMenuBar(TestingQt);
menubar->setObjectName(QString::fromUtf8("menubar"));
menubar->setGeometry(QRect(0, 0, 800, 21));
TestingQt->setMenuBar(menubar);
statusbar = new QStatusBar(TestingQt); // Crash here
statusbar->setObjectName(QString::fromUtf8("statusbar"));
TestingQt->setStatusBar(statusbar);
retranslateUi(TestingQt);
QMetaObject::connectSlotsByName(TestingQt);
} // setupUi
Has anyone successfully run a Qt app on Symbian^3? Is there something extra that I need to do to get it working?
Thanks,
Liz.