diff options
author | Arno <arno@disconnect.de> | 2018-07-30 11:25:18 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-07-30 11:25:18 +0200 |
commit | 8243c41ee9c3f0b59f8d36cd74113b49b139ddce (patch) | |
tree | 780366ca80f3ecffbb7a20a424e8e52d62ac99fc | |
parent | 9e69fd3e9966927f2b6d7d7a551f87093983acbe (diff) | |
download | BeetPlayer-8243c41ee9c3f0b59f8d36cd74113b49b139ddce.tar.gz BeetPlayer-8243c41ee9c3f0b59f8d36cd74113b49b139ddce.tar.bz2 BeetPlayer-8243c41ee9c3f0b59f8d36cd74113b49b139ddce.zip |
Remove leftover qDebug()s
-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){ |