From 09cf443b5f8d8b7da836919775195f77b4e63f8c Mon Sep 17 00:00:00 2001 From: Nicolas Carion Date: Sun, 4 Mar 2018 22:28:53 +0100 Subject: [PATCH] cleanup some debug --- src/timeline2/model/groupsmodel.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/timeline2/model/groupsmodel.cpp b/src/timeline2/model/groupsmodel.cpp index 9fa597752..06ca28bfa 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); -- GitLab