It looks like your QMicosPollControllerimplementes (or one of its non Qt base clases if it has any) or in a global scope somewhere also a 'connect()' function is implemented.
This should work:
Qt Code:
  1. void QMicosPolluxController::waitUntilPositionReached()
  2. {
  3. QObject::connect(d->checkPositionThread, SIGNAL(positionReached(bool)), this, SIGNAL(positionReached()));
  4. }
To copy to clipboard, switch view to plain text mode