mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-20 15:59:42 +01:00
Just some more qDebug
This commit is contained in:
parent
bb09c15c30
commit
c2d0382bae
@ -251,7 +251,7 @@ TrackView::dragEnterEvent( QDragEnterEvent* event )
|
||||
m_dragging = true;
|
||||
m_dropRect = QRect();
|
||||
|
||||
qDebug() << "Accepting Drag Event";
|
||||
qDebug() << Q_FUNC_INFO << "Accepting Drag Event";
|
||||
event->acceptProposedAction();
|
||||
}
|
||||
}
|
||||
@ -310,12 +310,12 @@ TrackView::dropEvent( QDropEvent* event )
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( DropJob::acceptsMimeData( event->mimeData() ) )
|
||||
if ( DropJob::acceptsMimeData( event->mimeData()) )
|
||||
{
|
||||
const QPoint pos = event->pos();
|
||||
const QModelIndex index = indexAt( pos );
|
||||
|
||||
qDebug() << "Drop Event accepted at row:" << index.row();
|
||||
qDebug() << Q_FUNC_INFO << "Drop Event accepted at row:" << index.row();
|
||||
event->acceptProposedAction();
|
||||
|
||||
if ( !model()->isReadOnly() )
|
||||
|
Loading…
x
Reference in New Issue
Block a user