diff options
-rw-r--r-- | playerwidget.cpp | 1 | ||||
-rw-r--r-- | webdownloader.cpp | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/playerwidget.cpp b/playerwidget.cpp index 40efad5..5dcae99 100644 --- a/playerwidget.cpp +++ b/playerwidget.cpp @@ -638,7 +638,6 @@ void PlayerWidget::addToPlayList(){ return; } for(const QModelIndex &i : sel){ - qDebug() << i.data(CollectionWidget::TypeRole) << i.data(); int type = i.data(CollectionWidget::TypeRole).toInt(); if(type == CollectionWidget::Song){ addSong(i); diff --git a/webdownloader.cpp b/webdownloader.cpp index 761107c..6ea3258 100644 --- a/webdownloader.cpp +++ b/webdownloader.cpp @@ -63,8 +63,6 @@ void WebDownloader::dlFinished(QNetworkReply *reply){ QRegularExpressionMatch match = yearRE.match(date); if(match.hasMatch()){ year = match.captured(0).toInt(); - }else{ - qDebug() << date; } auto otherIt = mOtherData.constEnd(); if(year != -1){ |