]> git.sesse.net Git - kdenlive/commitdiff
remove debug info
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Sat, 12 Feb 2011 21:36:19 +0000 (21:36 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Sat, 12 Feb 2011 21:36:19 +0000 (21:36 +0000)
svn path=/trunk/kdenlive/; revision=5395

src/projectlist.cpp

index f93eb5c985aac44fbf4c14ea70ba80f9a26bc194..af471ae8daaf903f507278123eefecc9d5a666df 100644 (file)
@@ -1732,7 +1732,6 @@ ProjectItem *ProjectList::getItemById(const QString &id)
 {
     ProjectItem *item;
     QTreeWidgetItemIterator it(m_listView);
-    kDebug()<<"-----------------  GET IT BY ID: "<<id;
     while (*it) {
         if ((*it)->type() != PROJECTCLIPTYPE) {
             // subitem or folder
@@ -1740,7 +1739,6 @@ ProjectItem *ProjectList::getItemById(const QString &id)
             continue;
         }
         item = static_cast<ProjectItem *>(*it);
-        kDebug()<<"/// /// PARSING ITEM............."<<item->clipId()<<"-"<<item->text(0);
         if (item->clipId() == id)
             return item;
         ++it;