summaryrefslogtreecommitdiffstats
path: root/src/corelib/mimetypes
diff options
context:
space:
mode:
authorABBAPOH <ABBAPOH@nextmail.ru>2012-02-26 15:17:59 +0400
committerQt by Nokia <qt-info@nokia.com>2012-03-10 10:52:55 +0100
commitbcf8c6984a3bce9ed5b09cb51739617c910a46a2 (patch)
tree41cba0419b70adf2e498d696ad425df85e910e52 /src/corelib/mimetypes
parentf744b82344ffd4f5719dcab57c4074179448e170 (diff)
Fix commas according to qt coding style
Change-Id: Ibf49f1c3d426917d1cfcb382c8ed2771d43d6e99 Reviewed-by: David Faure <faure@kde.org>
Diffstat (limited to 'src/corelib/mimetypes')
-rw-r--r--src/corelib/mimetypes/qmimetype.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/corelib/mimetypes/qmimetype.cpp b/src/corelib/mimetypes/qmimetype.cpp
index 6cbd938be3..e537ee0efb 100644
--- a/src/corelib/mimetypes/qmimetype.cpp
+++ b/src/corelib/mimetypes/qmimetype.cpp
@@ -67,12 +67,12 @@ QMimeTypePrivate::QMimeTypePrivate()
{}
QMimeTypePrivate::QMimeTypePrivate(const QMimeType &other)
- : name(other.d->name)
- //, comment(other.d->comment)
- , localeComments(other.d->localeComments)
- , genericIconName(other.d->genericIconName)
- , iconName(other.d->iconName)
- , globPatterns(other.d->globPatterns)
+ : name(other.d->name),
+ // comment(other.d->comment),
+ localeComments(other.d->localeComments),
+ genericIconName(other.d->genericIconName),
+ iconName(other.d->iconName),
+ globPatterns(other.d->globPatterns)
{}
void QMimeTypePrivate::clear()