10-05-2012 09:28 PM
Hi,
I created a project called Location Diagnostics and copied the code from http://blackberry.github.com/Cascades-Samples/geo-
connect(m_satelliteSource, SIGNAL(satellitesInUseUpdated(const QList<QGeoSatelliteInfo> &)), this, SLOT(satellitesInUseUpdatedSlot(const QList<QGeoSatelliteInfo> &)));
connect(m_satelliteSource, SIGNAL(satellitesInViewUpdated(const QList<QGeoSatelliteInfo> &)), this, SLOT(satellitesInViewUpdatedSlot(const QList<QGeoSatelliteInfo> &)));
After commenting out these lines the app builds and "seems" to work without issue. Looking at the API's for QGeoSatelliteInfoSource these two lines should not cause an issue. Any reason why this build error might be occurring?
Thanks,
Gerry
10-06-2012 01:35 AM
Whats the error? Its probably a namespace issue
10-06-2012 04:38 PM
The errors are :
Description Resource Path Location Type
Signal/Slot "LocationSession.satellitesInUseUpdatedSlot(const QList<QGeoSatelliteInfo> &)" is not defined LocationSession.cpp /LocationDiagnostics/src line 42 QT C/C++ Problem
Description Resource Path Location Type
Signal/Slot "LocationSession.satellitesInViewUpdatedSlot(const QList<QGeoSatelliteInfo> &)" is not defined LocationSession.cpp /LocationDiagnostics/src line 43 QT C/C++ Problem
Description Resource Path Location Type
Signal/Slot "QGeoSatelliteInfoSource.satellitesInUseUpdated(co
Description Resource Path Location Type
Signal/Slot "QGeoSatelliteInfoSource.satellitesInViewUpdated(c
Gerry