diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-26 10:34:03 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-26 10:36:52 (GMT) |
commit | c666b88abcb2c5c120054ac3b0d304cd8225ded7 (patch) | |
tree | 68e6a50a0333cde8e2616282fc5a94056b0f43e6 /src/corelib/io | |
parent | 5345306c9a0a3b10dbf640253b8b2287c762b081 (diff) | |
download | Qt-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')
-rw-r--r-- | src/corelib/io/qfsfileengine_win.cpp | 2 |
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 } |