summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorABBAPOH <ABBAPOH@nextmail.ru>2012-02-26 15:19:00 +0400
committerQt by Nokia <qt-info@nokia.com>2012-03-10 10:53:16 +0100
commit7a1a0fc76b7a60483e8ef728102d10d39f0c7a23 (patch)
tree0d57b75726422f85de6cb04087bca68df5c8de7f
parentbcf8c6984a3bce9ed5b09cb51739617c910a46a2 (diff)
Remove commented 'comment'
Change-Id: I996a34fb2dc91da8b68039b4bc797a255c99d2e0 Reviewed-by: David Faure <faure@kde.org>
-rw-r--r--src/corelib/mimetypes/qmimetype.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/corelib/mimetypes/qmimetype.cpp b/src/corelib/mimetypes/qmimetype.cpp
index e537ee0efb..ebf687bb4b 100644
--- a/src/corelib/mimetypes/qmimetype.cpp
+++ b/src/corelib/mimetypes/qmimetype.cpp
@@ -68,7 +68,6 @@ 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),
@@ -78,7 +77,6 @@ QMimeTypePrivate::QMimeTypePrivate(const QMimeType &other)
void QMimeTypePrivate::clear()
{
name.clear();
- //comment.clear();
localeComments.clear();
genericIconName.clear();
iconName.clear();
@@ -93,7 +91,6 @@ bool QMimeTypePrivate::operator==(const QMimeTypePrivate &other) const
{
DBG();
if (name == other.name &&
- //comment == other.comment &&
localeComments == other.localeComments &&
genericIconName == other.genericIconName &&
iconName == other.iconName &&