summaryrefslogtreecommitdiffstats
path: root/src/mimetypes/qmimetype.h
diff options
context:
space:
mode:
authorWolf-Michael Bolle <wolf-michael.bolle@nokia.com>2011-09-19 11:35:22 +0200
committerWolf-Michael Bolle <wolf-michael.bolle@nokia.com>2011-09-19 11:36:50 +0200
commitcaff2617fc831a3a3b6c8ef43a2b7b098df16a03 (patch)
treea1177e8ba93b6a0df7308105cac85b8e83beb2eb /src/mimetypes/qmimetype.h
parentfe6ae1932a2510ee748659901c2ed8565225e698 (diff)
Corrected file extention to filename extension.
Change-Id: Ic3853ace953678878659d86769f696846fffbc84 Reviewed-on: http://codereview.qt-project.org/5125 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Wolf-Michael Bolle <wolf-michael.bolle@nokia.com>
Diffstat (limited to 'src/mimetypes/qmimetype.h')
-rw-r--r--src/mimetypes/qmimetype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mimetypes/qmimetype.h b/src/mimetypes/qmimetype.h
index 8c2a4e9..d2797e7 100644
--- a/src/mimetypes/qmimetype.h
+++ b/src/mimetypes/qmimetype.h
@@ -65,7 +65,7 @@ public:
QMimeType(const QMimeTypeName &theName,
const QString &theDisplayName,
const QString &theIconUrl,
- const QList<QString> &theFileExtentions);
+ const QList<QString> &theFilenameExtensions);
QMimeType(const QMimeType &other);
QMimeType &operator=(const QMimeType &other);
~QMimeType();
@@ -82,7 +82,7 @@ public:
const QMimeTypeName &name() const;
const QString &displayName() const;
const QString &iconUrl() const;
- const QList<QString> &fileExtentions() const;
+ const QList<QString> &filenameExtensions() const;
private:
QScopedPointer<QMimeTypePrivate> d_ptr;