-
Bug
-
Resolution: Cannot Reproduce
-
P1: Critical
-
None
-
4.7.2
-
None
-
Symbian^3
Running the following code (also attached) causes a stray signal with the latest Qt mobility but it runs on older versions.
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTM_NAMESPACE::QNetworkConfigurationManager manager;
QTM_NAMESPACE::QNetworkConfiguration cfg;
QTM_NAMESPACE::QNetworkSession *_session;
cfg = manager.defaultConfiguration();
_session = new QTM_NAMESPACE::QNetworkSession(cfg, &a);
CActiveSchedulerWait* wait = new CActiveSchedulerWait();
wait->Start();
return a.exec();
}