summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWolf-Michael Bolle <wolf-michael.bolle@nokia.com>2011-12-21 15:35:56 +0100
committerWolf-Michael Bolle <wolf-michael.bolle@nokia.com>2011-12-21 15:35:56 +0100
commitfb3fc49d00a665fc0a77b400260de56fe1e818b3 (patch)
tree42d72a8bcb9fe17876ce51cfa87210723d5d8597 /src
parent4c340c7f8bc37e48e072c4a149ca760343c646d6 (diff)
Documentation
Diffstat (limited to 'src')
-rw-r--r--src/imports/mimetypes/qdeclarativemimedatabase.cpp2
-rw-r--r--src/imports/mimetypes/qdeclarativemimetype.cpp6
-rw-r--r--src/mimetypes/qmimedatabase.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/imports/mimetypes/qdeclarativemimedatabase.cpp b/src/imports/mimetypes/qdeclarativemimedatabase.cpp
index edda2b6..7130191 100644
--- a/src/imports/mimetypes/qdeclarativemimedatabase.cpp
+++ b/src/imports/mimetypes/qdeclarativemimedatabase.cpp
@@ -74,7 +74,7 @@ extern bool isQMimeDatabaseDebuggingActivated;
/*!
\fn QDeclarativeMimeDatabase::QDeclarativeMimeDatabase(QObject *theParent);
- \brief Performs default initialization of the contained MimeDatabase, and attaches the object to the specified parent for destruction.
+ \brief Performs default initialization of the contained MimeDatabase, and attaches the object to the specified \a theParent for destruction.
*/
QDeclarativeMimeDatabase::QDeclarativeMimeDatabase(QObject *theParent) :
QObject(theParent),
diff --git a/src/imports/mimetypes/qdeclarativemimetype.cpp b/src/imports/mimetypes/qdeclarativemimetype.cpp
index eda7df9..790226d 100644
--- a/src/imports/mimetypes/qdeclarativemimetype.cpp
+++ b/src/imports/mimetypes/qdeclarativemimetype.cpp
@@ -75,7 +75,7 @@ extern bool isQMimeTypeDebuggingActivated;
/*!
\fn QDeclarativeMimeType::QDeclarativeMimeType(QObject *theParent);
- \brief Performs default initialization of the contained MimeType, and attaches the object to the specified parent for destruction.
+ \brief Performs default initialization of the contained MimeType, and attaches the object to the specified \a theParent for destruction.
*/
QDeclarativeMimeType::QDeclarativeMimeType(QObject *theParent) :
QObject(theParent),
@@ -95,7 +95,7 @@ QDeclarativeMimeType::QDeclarativeMimeType(QObject *theParent) :
/*!
\fn QDeclarativeMimeType::QDeclarativeMimeType(const QMimeType &other, QObject *theParent);
- \brief Copies the specified MimeType \a other, and attaches the object to the specified parent for destruction.
+ \brief Copies the specified MimeType \a other, and attaches the object to the specified \a theParent for destruction.
*/
QDeclarativeMimeType::QDeclarativeMimeType(const QMimeType &other, QObject *theParent) :
QObject(theParent),
@@ -116,7 +116,7 @@ QDeclarativeMimeType::QDeclarativeMimeType(const QMimeType &other, QObject *theP
#ifdef Q_COMPILER_RVALUE_REFS
/*!
\fn QDeclarativeMimeType::QDeclarativeMimeType(const QMimeType &other, QObject *theParent);
- \brief Moves the specified MimeType \a other, and attaches the object to the specified parent for destruction.
+ \brief Moves the specified MimeType \a other, and attaches the object to the specified \a theParent for destruction.
*/
QDeclarativeMimeType::QDeclarativeMimeType(QMimeType &&other, QObject *theParent) :
QObject(theParent),
diff --git a/src/mimetypes/qmimedatabase.cpp b/src/mimetypes/qmimedatabase.cpp
index 2d2ddcc..3a6afb3 100644
--- a/src/mimetypes/qmimedatabase.cpp
+++ b/src/mimetypes/qmimedatabase.cpp
@@ -491,7 +491,7 @@ QMimeType QMimeDatabase::findByData(const QByteArray &data) const
/*!
Returns a MIME type for the data in \a device.
- A valid MIME type is always returned. If \a data doesn't match any
+ A valid MIME type is always returned. If the data in \a device doesn't match any
known MIME type data, the default MIME type (application/octet-stream)
is returned.
*/