diff options
author | jaanttil <janne.anttila@digia.com> | 2011-10-05 09:55:56 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-03 14:25:17 (GMT) |
commit | aff964df58e213986cc5c18e4c2e81948345aeeb (patch) | |
tree | 3e96d465ea54edf4dd968f1f2e5784f30b2fdfcf /src/corelib/plugin | |
parent | d0a32c943b9ce21de33ab19757cc5f2a994b41c7 (diff) | |
download | Qt-aff964df58e213986cc5c18e4c2e81948345aeeb.zip Qt-aff964df58e213986cc5c18e4c2e81948345aeeb.tar.gz Qt-aff964df58e213986cc5c18e4c2e81948345aeeb.tar.bz2 |
Reduces compiler warnings when compiling for WEC7
Task-number: QTBUG-22512
Change-Id: I17fd0ff83fa23ae3e17597b753819d1f6b5d8446
Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com>
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'src/corelib/plugin')
-rw-r--r-- | src/corelib/plugin/qsystemlibrary.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/plugin/qsystemlibrary.cpp b/src/corelib/plugin/qsystemlibrary.cpp index 76213a3..e54cecf 100644 --- a/src/corelib/plugin/qsystemlibrary.cpp +++ b/src/corelib/plugin/qsystemlibrary.cpp @@ -84,6 +84,7 @@ QT_BEGIN_NAMESPACE #if defined(Q_OS_WINCE) HINSTANCE QSystemLibrary::load(const wchar_t *libraryName, bool onlySystemDirectory /* = true */) { + Q_UNUSED(onlySystemDirectory); return ::LoadLibrary(libraryName); } #else |