Skip to content
Snippets Groups Projects
Commit 57256ac0 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

codecmodel: remove unnecessary log

Refs #68848
parent 1374996d
No related branches found
No related tags found
No related merge requests found
......@@ -303,7 +303,6 @@ QModelIndex CodecModel::getIndexofCodecByID(int id)
for (int i=0; i < rowCount();i++) {
const QModelIndex& idx = index(i,0);
if (data(idx, CodecModel::Role::ID) == id) {
qDebug() << "FOUND";
return idx;
}
}
......@@ -374,7 +373,6 @@ QMimeData* CodecModel::mimeData(const QModelIndexList& indexes) const
for (const QModelIndex& index : indexes) {
if (index.isValid()) {
qDebug() << "setting mime data for row: " << index.row();
if(index.data(CodecModel::Role::TYPE).toString() == "AUDIO")
mMimeData->setData(RingMimes::AUDIO_CODEC , index.data(CodecModel::Role::ID).toByteArray());
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment