From 330153b8a8644657def952ae0ab9ae53d020af08 Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Wed, 11 Nov 2009 21:28:35 +0100 Subject: [PATCH] Commented out debug statements --- src/ListModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ListModel.cpp b/src/ListModel.cpp index 69aee7b..e7592ec 100755 --- a/src/ListModel.cpp +++ b/src/ListModel.cpp @@ -382,7 +382,7 @@ void ListModel::move(QModelIndexList &indexes, bool up) { foreach (QModelIndex index, indexes) { int row = index.row(); - qDebug() << "index row" << row; + // qDebug() << "index row" << row; Video *video = videoAt(row); movedVideos << video; } @@ -391,7 +391,7 @@ void ListModel::move(QModelIndexList &indexes, bool up) { foreach (Video *video, movedVideos) { int row = rowForVideo(video); - qDebug() << "video row" << row; + // qDebug() << "video row" << row; removeRows(row, 1, QModelIndex()); if (up) row--; -- 2.39.5