diff options
Diffstat (limited to 'juk/playlistbox.cpp')
-rw-r--r-- | juk/playlistbox.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/juk/playlistbox.cpp b/juk/playlistbox.cpp index f708242b..74019be3 100644 --- a/juk/playlistbox.cpp +++ b/juk/playlistbox.cpp @@ -445,7 +445,7 @@ void PlaylistBox::contentsDropEvent(TQDropEvent *e) if(m_dropItem) { Item *old = m_dropItem; m_dropItem = 0; - old->tqrepaint(); + old->repaint(); } } @@ -493,14 +493,14 @@ void PlaylistBox::contentsDragMoveEvent(TQDragMoveEvent *e) if(e->isAccepted()) { m_dropItem = target; - target->tqrepaint(); + target->repaint(); m_showTimer->start(1500, true); } else m_dropItem = 0; if(old) - old->tqrepaint(); + old->repaint(); } } else { @@ -517,7 +517,7 @@ void PlaylistBox::contentsDragLeaveEvent(TQDragLeaveEvent *e) if(m_dropItem) { Item *old = m_dropItem; m_dropItem = 0; - old->tqrepaint(); + old->repaint(); } KListView::contentsDragLeaveEvent(e); } |