From af6d0ac59424e75ee840b668f193a1d5973efe07 Mon Sep 17 00:00:00 2001 From: axis Date: Wed, 19 Aug 2009 15:40:40 +0200 Subject: Reverse the ifdefs to make it clearer, as per code review. RevBy: Trust me --- src/corelib/thread/qthread_unix.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/corelib/thread/qthread_unix.cpp b/src/corelib/thread/qthread_unix.cpp index 5401cfd..30914f4 100644 --- a/src/corelib/thread/qthread_unix.cpp +++ b/src/corelib/thread/qthread_unix.cpp @@ -243,10 +243,10 @@ void *QThreadPrivate::start(void *arg) #endif thr->run(); -#ifndef Q_OS_SYMBIAN - pthread_cleanup_pop(1); -#else +#ifdef Q_OS_SYMBIAN QThreadPrivate::finish(arg); +#else + pthread_cleanup_pop(1); #endif return 0; -- cgit v0.12