OSDN Git Service

QmlDesigner: removes qDebug()
authorThomas Hartmann <Thomas.Hartmann@nokia.com>
Wed, 13 Oct 2010 16:04:18 +0000 (18:04 +0200)
committerMarco Bubke <marco.bubke@nokia.com>
Wed, 24 Nov 2010 14:52:22 +0000 (15:52 +0100)
src/plugins/qmldesigner/designercore/metainfo/metainfo.cpp

index 1cd7141..56436da 100644 (file)
@@ -386,7 +386,6 @@ void MetaInfoPrivate::parseQmlTypes()
             m_QtTypesToQmlTypes.insert(qtTypeName, qmlTypeName);
     }
     foreach (QDeclarativeType *qmlType, qmlTypes()) {
-        qDebug() << __FUNCTION__ << qmlType->qmlTypeName() << qmlType->typeName();
         const QMetaObject *qMetaObject = qmlType->metaObject();
 
         // parseQmlTypes is called iteratively e.g. when plugins are loaded
@@ -655,7 +654,6 @@ void MetaInfo::removeNodeInfo(NodeMetaInfo &info)
 
 EnumeratorMetaInfo MetaInfo::addEnumerator(const QString &enumeratorScope, const QString &enumeratorName)
 {
-    qDebug() << __FUNCTION__ << enumeratorScope << enumeratorName;
     Q_ASSERT(!enumeratorName.isEmpty());
 
     EnumeratorMetaInfo enumeratorMetaInfo;