1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 06:07:37 +02:00

less debug

This commit is contained in:
Leo Franchi
2011-10-02 17:19:47 -04:00
parent 0c47327fc4
commit 5594e25dcf

View File

@@ -481,13 +481,13 @@ SourceTreeView::dragMoveEvent( QDragMoveEvent* event )
if ( accept ) if ( accept )
{ {
//qDebug() << Q_FUNC_INFO << "Accepting"; //tDebug() << Q_FUNC_INFO << "Accepting";
event->setDropAction( Qt::CopyAction ); event->setDropAction( Qt::CopyAction );
event->accept(); event->accept();
} }
else else
{ {
qDebug() << Q_FUNC_INFO << "Ignoring"; // tDebug() << Q_FUNC_INFO << "Ignoring";
event->ignore(); event->ignore();
} }
} }