summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfsfileengine.cpp
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2011-08-15 17:10:30 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2011-08-15 17:10:30 (GMT)
commit540222f0d936a48f57ed36496fcb211cc437cb1b (patch)
tree70d18fe3ca5ac8e53410fc2b62d08fa80d88e09a /src/corelib/io/qfsfileengine.cpp
parent1c4b284b54c8d0166f777b256d1ac3eedd8ea593 (diff)
downloadQt-540222f0d936a48f57ed36496fcb211cc437cb1b.zip
Qt-540222f0d936a48f57ed36496fcb211cc437cb1b.tar.gz
Qt-540222f0d936a48f57ed36496fcb211cc437cb1b.tar.bz2
Doc: Fixed qdoc warnings.
Diffstat (limited to 'src/corelib/io/qfsfileengine.cpp')
-rw-r--r--src/corelib/io/qfsfileengine.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/corelib/io/qfsfileengine.cpp b/src/corelib/io/qfsfileengine.cpp
index 548f9cf..e1f3123 100644
--- a/src/corelib/io/qfsfileengine.cpp
+++ b/src/corelib/io/qfsfileengine.cpp
@@ -233,6 +233,14 @@ bool QFSFileEngine::open(QIODevice::OpenMode openMode, FILE *fh)
return open(openMode, fh, QFile::DontCloseHandle);
}
+/*!
+ Opens the file handle \a fh in \a openMode mode. Returns true
+ on success; otherwise returns false.
+
+ The \a handleFlags argument specifies whether the file handle will be
+ closed by Qt. See the QFile::FileHandleFlags documentation for more
+ information.
+*/
bool QFSFileEngine::open(QIODevice::OpenMode openMode, FILE *fh, QFile::FileHandleFlags handleFlags)
{
Q_D(QFSFileEngine);
@@ -294,6 +302,14 @@ bool QFSFileEngine::open(QIODevice::OpenMode openMode, int fd)
return open(openMode, fd, QFile::DontCloseHandle);
}
+/*!
+ Opens the file descriptor \a fd in \a openMode mode. Returns true
+ on success; otherwise returns false.
+
+ The \a handleFlags argument specifies whether the file handle will be
+ closed by Qt. See the QFile::FileHandleFlags documentation for more
+ information.
+*/
bool QFSFileEngine::open(QIODevice::OpenMode openMode, int fd, QFile::FileHandleFlags handleFlags)
{
Q_D(QFSFileEngine);