diff --git a/src/timeline2/model/groupsmodel.cpp b/src/timeline2/model/groupsmodel.cpp index 9fa5977520ce25a9babf5d9241c1ea8bb2edb543..06ca28bfa202c005a0be6085b3162938b4d10d52 100644 --- a/src/timeline2/model/groupsmodel.cpp +++ b/src/timeline2/model/groupsmodel.cpp @@ -71,7 +71,6 @@ Fun GroupsModel::groupItems_lambda(int gid, const std::unordered_set &ids, QWriteLocker locker(&m_lock); Q_ASSERT(ids.size() == 0 || type != GroupType::Leaf); return [gid, ids, parent, type, this]() { - qDebug() << "Create group " << gid << " with " << ids.size() << "children and type" << int(type); createGroupItem(gid); if (parent != -1) { setGroup(gid, parent); @@ -91,7 +90,6 @@ Fun GroupsModel::groupItems_lambda(int gid, const std::unordered_set &ids, } } } - qDebug() << "End of creation. Type = " << (int)getType(gid); return true; }; } @@ -140,7 +138,6 @@ Fun GroupsModel::destructGroupItem_lambda(int id) { QWriteLocker locker(&m_lock); return [this, id]() { - qDebug() << "removing group " << id << " of type" << int(getType(id)); removeFromGroup(id); auto ptr = m_parent.lock(); if (!ptr) Q_ASSERT(false);