summaryrefslogtreecommitdiffstats
path: root/src/corelib/io
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2009-08-26 09:25:08 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2009-08-26 09:27:44 (GMT)
commitdad83c695e968d7c9fb0be2f4636cf14d34fb8a1 (patch)
tree4699bdb1a869d6a119e59f17d5217b25e4e504b5 /src/corelib/io
parent796d7cc7dd96cea9875afe2e9cf814e8cb192aa1 (diff)
downloadQt-dad83c695e968d7c9fb0be2f4636cf14d34fb8a1.zip
Qt-dad83c695e968d7c9fb0be2f4636cf14d34fb8a1.tar.gz
Qt-dad83c695e968d7c9fb0be2f4636cf14d34fb8a1.tar.bz2
fix warnings on Windows CE
Lots of warnings in the qreal == float case. Some Q_UNUSED added. Reviewed-by: thartman
Diffstat (limited to 'src/corelib/io')
-rw-r--r--src/corelib/io/qfsfileengine_win.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/io/qfsfileengine_win.cpp b/src/corelib/io/qfsfileengine_win.cpp
index a8de17b..e1fc804 100644
--- a/src/corelib/io/qfsfileengine_win.cpp
+++ b/src/corelib/io/qfsfileengine_win.cpp
@@ -1289,6 +1289,8 @@ static QString readSymLink(const QString &link)
qFree(rdb);
CloseHandle(handle);
}
+#else
+ Q_UNUSED(link);
#endif // Q_OS_WINCE
return result;
}