diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-07-14 12:22:21 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-07-14 12:22:21 (GMT) |
commit | 67e52d5b57e604ba82351b8edb038a5adbaf8c5a (patch) | |
tree | 03291aa2114c758d07aec222fc794632b95dcc9b /src/corelib/io | |
parent | b427fd6bd0e5e182fa507a1930356f9cbdeacd86 (diff) | |
download | Qt-67e52d5b57e604ba82351b8edb038a5adbaf8c5a.zip Qt-67e52d5b57e604ba82351b8edb038a5adbaf8c5a.tar.gz Qt-67e52d5b57e604ba82351b8edb038a5adbaf8c5a.tar.bz2 |
outdated comment in qfsfileengine_win.cpp removed
Reviewed-by: TrustMe
Diffstat (limited to 'src/corelib/io')
-rw-r--r-- | src/corelib/io/qfsfileengine_win.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/corelib/io/qfsfileengine_win.cpp b/src/corelib/io/qfsfileengine_win.cpp index 5365ff5..fcace33 100644 --- a/src/corelib/io/qfsfileengine_win.cpp +++ b/src/corelib/io/qfsfileengine_win.cpp @@ -607,7 +607,6 @@ qint64 QFSFileEnginePrivate::nativePos() const #if !defined(QT_NO_LIBRARY) && !defined(Q_OS_WINCE) } - // This approach supports large files. LARGE_INTEGER currentFilePos; LARGE_INTEGER offset; offset.QuadPart = 0; @@ -651,7 +650,6 @@ bool QFSFileEnginePrivate::nativeSeek(qint64 pos) #if !defined(QT_NO_LIBRARY) && !defined(Q_OS_WINCE) } - // This approach supports large files. LARGE_INTEGER currentFilePos; LARGE_INTEGER offset; offset.QuadPart = pos; |