summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIain <qt-info@nokia.com>2009-05-26 16:18:56 (GMT)
committerIain <qt-info@nokia.com>2009-05-26 16:24:22 (GMT)
commitfca64a07d80d3a9284bb9f9bd831d01294fd2be0 (patch)
tree3ab1c527ff2736934ea8464acdbc5cf611ea5d9c /src
parentb5905a47874a7000602be5b1afc33d90b7ebb831 (diff)
downloadQt-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.cpp5
-rw-r--r--src/corelib/kernel/qcoreapplication_p.h2
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;