diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-09-23 07:11:56 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-09-23 13:10:38 (GMT) |
commit | 2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a (patch) | |
tree | 4b2b511d480e97a5e55e4f172b1e7599149a7cc4 /src | |
parent | 7dedc5699842d2651859e36b0ca843ec4d173056 (diff) | |
download | Qt-2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a.zip Qt-2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a.tar.gz Qt-2e27c5a11488d5b7aa6831ba30a8c11bf71fb07a.tar.bz2 |
Fix a warning about an unused variable.
Reviewed-by: TrustMe
Diffstat (limited to 'src')
-rw-r--r-- | src/corelib/kernel/qcoreapplication.cpp | 2 |
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 |