Fix commas according to qt coding style
authorABBAPOH <ABBAPOH@nextmail.ru>
Sun, 26 Feb 2012 11:17:59 +0000 (15:17 +0400)
committerQt by Nokia <qt-info@nokia.com>
Sat, 10 Mar 2012 09:52:55 +0000 (10:52 +0100)
Change-Id: Ibf49f1c3d426917d1cfcb382c8ed2771d43d6e99
Reviewed-by: David Faure <faure@kde.org>
src/corelib/mimetypes/qmimetype.cpp

index 6cbd938..e537ee0 100644 (file)
@@ -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()