summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfsfileengine_p.h
diff options
context:
space:
mode:
authorXizhi Zhu <xizhi.zhu@gmail.com>2012-01-23 21:21:40 +0100
committerQt by Nokia <qt-info@nokia.com>2012-01-30 16:50:21 +0100
commitd3fdc132fe67806fe4a5ab73c43effa281c6d8a2 (patch)
tree611578b8cf49dd00f69e68ab7e4d445c1080b479 /src/corelib/io/qfsfileengine_p.h
parent0c29259fd7c6f6283d17b598ec61347fc214b869 (diff)
Remove Symbian specific code from QtCore.
Change-Id: I131303e28a12dccb96de3de4ca0073b389a9bbae Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/corelib/io/qfsfileengine_p.h')
-rw-r--r--src/corelib/io/qfsfileengine_p.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/corelib/io/qfsfileengine_p.h b/src/corelib/io/qfsfileengine_p.h
index 88865e9502..c06f662380 100644
--- a/src/corelib/io/qfsfileengine_p.h
+++ b/src/corelib/io/qfsfileengine_p.h
@@ -60,10 +60,6 @@
#include <QtCore/private/qfilesystemmetadata_p.h>
#include <qhash.h>
-#ifdef Q_OS_SYMBIAN
-#include <f32file.h>
-#endif
-
#ifndef QT_NO_FSFILEENGINE
QT_BEGIN_NAMESPACE
@@ -117,31 +113,6 @@ public:
mutable QFileSystemMetaData metaData;
FILE *fh;
-#ifdef Q_OS_SYMBIAN
-#ifdef SYMBIAN_ENABLE_64_BIT_FILE_SERVER_API
- RFile64 symbianFile;
- TInt64 symbianFilePos;
-#else
- RFile symbianFile;
-
- /**
- * The cursor position in the underlying file. This differs
- * from devicePos because the latter is updated on calls to
- * writeData, even if no data was physically transferred to
- * the file, but instead stored in the write buffer.
- *
- * iFilePos is updated on calls to RFile::Read and
- * RFile::Write. It is also updated on calls to seek() but
- * RFile::Seek is not called when that happens because
- * Symbian supports positioned reads and writes, saving a file
- * server call, and because Symbian does not support seeking
- * past the end of a file.
- */
- TInt symbianFilePos;
-#endif
- mutable int fileHandleForMaps;
- int getMapHandle();
-#endif
#ifdef Q_OS_WIN
HANDLE fileHandle;