summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel
diff options
context:
space:
mode:
authorJason Barron <jbarron@trolltech.com>2009-09-23 07:11:56 (GMT)
committerJason Barron <jbarron@trolltech.com>2009-09-23 13:10:38 (GMT)
commit2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a (patch)
tree4b2b511d480e97a5e55e4f172b1e7599149a7cc4 /src/corelib/kernel
parent7dedc5699842d2651859e36b0ca843ec4d173056 (diff)
downloadQt-2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a.zip
Qt-2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a.tar.gz
Qt-2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a.tar.bz2
Fix a warning about an unused variable.
Reviewed-by: TrustMe
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r--src/corelib/kernel/qcoreapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
index c575509..9a93685 100644
--- a/src/corelib/kernel/qcoreapplication.cpp
+++ b/src/corelib/kernel/qcoreapplication.cpp
@@ -345,7 +345,7 @@ void QCoreApplicationPrivate::checkReceiverThread(QObject *receiver)
}
#elif defined(Q_OS_SYMBIAN) && defined (QT_NO_DEBUG)
// no implementation in release builds, but keep the symbol present
-void QCoreApplicationPrivate::checkReceiverThread(QObject *receiver)
+void QCoreApplicationPrivate::checkReceiverThread(QObject * /* receiver */)
{
}
#endif