hi everybody;
i have a problem with connect() in a thread. here is the code ;
http://wiki.forum.nokia.com/index.ph...t_Mobility_API
.how can i run this example in a thread. i am trying to run Locationwatcher::enable() in qthread
MyThread ab ;
ab.start();
-----------------------
my run function:
Locationwatcher c;
c.enable();
-------------------
enable func.
connect(source, SIGNAL(positionUpdated(QGeoPositionInfo)),
this, SLOT(positionUpdated(QGeoPositionInfo)));
source->startUpdates();
----------------------------------
i think problem occurs in SIGNAL() and SLOT() ... is my way wrong?
or How can i run this example in thread...
thanks...



