diff options
author | Iain <qt-info@nokia.com> | 2009-05-26 16:18:56 (GMT) |
---|---|---|
committer | Iain <qt-info@nokia.com> | 2009-05-26 16:24:22 (GMT) |
commit | fca64a07d80d3a9284bb9f9bd831d01294fd2be0 (patch) | |
tree | 3ab1c527ff2736934ea8464acdbc5cf611ea5d9c /src | |
parent | b5905a47874a7000602be5b1afc33d90b7ebb831 (diff) | |
download | Qt-fca64a07d80d3a9284bb9f9bd831d01294fd2be0.zip Qt-fca64a07d80d3a9284bb9f9bd831d01294fd2be0.tar.gz Qt-fca64a07d80d3a9284bb9f9bd831d01294fd2be0.tar.bz2 |
Keep exported symbols the same between udeb and urel, although the
implementation does nothing in urel
Required to have udeb/urel compatibility between binaries.
RevBy: Alessandro Portale
Diffstat (limited to 'src')
-rw-r--r-- | src/corelib/kernel/qcoreapplication.cpp | 5 | ||||
-rw-r--r-- | src/corelib/kernel/qcoreapplication_p.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp index 7d8a77a..d99164b 100644 --- a/src/corelib/kernel/qcoreapplication.cpp +++ b/src/corelib/kernel/qcoreapplication.cpp @@ -311,6 +311,11 @@ void QCoreApplicationPrivate::checkReceiverThread(QObject *receiver) Q_UNUSED(currentThread); Q_UNUSED(thr); } +#elif defined(Q_OS_SYMBIAN) && defined (QT_NO_DEBUG) +// no implementation in release builds, but keep the symbol present +void QCoreApplicationPrivate::checkReceiverThread(QObject *receiver) +{ +} #endif void QCoreApplicationPrivate::appendApplicationPathToLibraryPaths() diff --git a/src/corelib/kernel/qcoreapplication_p.h b/src/corelib/kernel/qcoreapplication_p.h index 9490ad7..c1118d1 100644 --- a/src/corelib/kernel/qcoreapplication_p.h +++ b/src/corelib/kernel/qcoreapplication_p.h @@ -92,7 +92,7 @@ public: static void sendPostedEvents(QObject *receiver, int event_type, QThreadData *data); static void removePostedEvents_unlocked(QObject *receiver, int type, QThreadData *data); -#if !defined (QT_NO_DEBUG) || defined (QT_MAC_FRAMEWORK_BUILD) +#if !defined (QT_NO_DEBUG) || defined (QT_MAC_FRAMEWORK_BUILD) || defined (Q_OS_SYMBIAN) void checkReceiverThread(QObject *receiver); #endif int &argc; |