summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfsfileengine_win.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@trolltech.com>2009-05-26 10:34:03 (GMT)
committerJoerg Bornemann <joerg.bornemann@trolltech.com>2009-05-26 10:36:52 (GMT)
commitc666b88abcb2c5c120054ac3b0d304cd8225ded7 (patch)
tree68e6a50a0333cde8e2616282fc5a94056b0f43e6 /src/corelib/io/qfsfileengine_win.cpp
parent5345306c9a0a3b10dbf640253b8b2287c762b081 (diff)
downloadQt-c666b88abcb2c5c120054ac3b0d304cd8225ded7.zip
Qt-c666b88abcb2c5c120054ac3b0d304cd8225ded7.tar.gz
Qt-c666b88abcb2c5c120054ac3b0d304cd8225ded7.tar.bz2
Windows CE compile fix
QFileInfo doesn't have a constructor for QLatin1Char and implicit conversion didn't work. Reviewed-by: Thierry
Diffstat (limited to 'src/corelib/io/qfsfileengine_win.cpp')
-rw-r--r--src/corelib/io/qfsfileengine_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qfsfileengine_win.cpp b/src/corelib/io/qfsfileengine_win.cpp
index aee9fde..82cde8b 100644
--- a/src/corelib/io/qfsfileengine_win.cpp
+++ b/src/corelib/io/qfsfileengine_win.cpp
@@ -1298,7 +1298,7 @@ QFileInfoList QFSFileEngine::drives()
}
return ret;
#else
- ret.append(QLatin1Char('/'));
+ ret.append(QFileInfo(QLatin1Char('/')));
return ret;
#endif
}