diff options
-rw-r--r-- | src/corelib/kernel/qeventdispatcher_symbian.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/kernel/qeventdispatcher_symbian.cpp b/src/corelib/kernel/qeventdispatcher_symbian.cpp index f209b7a..a4c113b 100644 --- a/src/corelib/kernel/qeventdispatcher_symbian.cpp +++ b/src/corelib/kernel/qeventdispatcher_symbian.cpp @@ -281,7 +281,7 @@ void QTimerActiveObject::DoCancel() // Cancel requires a signal to continue, we're in the wrong thread to use the RTimer if (m_threadData->symbian_thread_handle.ExitType() == EExitPending) { // owner thread is still running, it will receive a stray event if the timer fires now. - qFatal("QTimerActiveObject cancelled from wrong thread"); + RDebug::Print(_L("QTimerActiveObject cancelled from wrong thread, owner thread will probably panic with stray signal")); } TRequestStatus *status = &iStatus; User::RequestComplete(status, KErrCancel); |