-
Bug
-
Resolution: Cannot Reproduce
-
P3: Somewhat important
-
None
-
1.1.0
-
None
-
Nokia Qt SDK for Windows 1.1 Tech Preview. Qt-4.7.1 on the phone and the desktop, qt-mobility 1.1.0
The following code:
QNetworkConfigurationManager manager;
const bool canStartIAP = (manager.capabilities() & QNetworkConfigurationManager::CanStartAndStopInterfaces);
// Is there default access point, use it
QNetworkConfiguration cfg = manager.defaultConfiguration();
if (!cfg.isValid() || (!canStartIAP && cfg.state() != QNetworkConfiguration::Active))
doesn't find internet access points on symbian^3 (nokia n8), while there are wlan and gprs available.
Simulator works fine.
I'm using Nokia Qt SDK 1.1 Tech Preview.
I'm not sure if this is Bearer issue, as it is deprecated when using qt 4.7 or higher.
When I comment bearer out (don't use it), I get "Available Access Points not found.", but
when I use it, I get just: Process 1748, thread 1749 stopped at 0x7ccc08ae: A data abort exception has occurred.
and the application crashes.