From: Flavio Tordini Date: Wed, 11 Nov 2009 20:28:35 +0000 (+0100) Subject: Commented out debug statements X-Git-Tag: 0.8~18 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=330153b8a8644657def952ae0ab9ae53d020af08;p=minitube Commented out debug statements --- 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--;