summaryrefslogtreecommitdiffstats
path: root/src/corelib/plugin
diff options
context:
space:
mode:
authorjaanttil <janne.anttila@digia.com>2011-10-05 12:55:56 +0300
committerQt by Nokia <qt-info@nokia.com>2012-02-03 15:25:17 +0100
commitaff964df58e213986cc5c18e4c2e81948345aeeb (patch)
tree3e96d465ea54edf4dd968f1f2e5784f30b2fdfcf /src/corelib/plugin
parentd0a32c943b9ce21de33ab19757cc5f2a994b41c7 (diff)
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.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/plugin/qsystemlibrary.cpp b/src/corelib/plugin/qsystemlibrary.cpp
index 76213a3451..e54cecff54 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