From dc07846059a60d069687585cc72ff501a2096296 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:57:28 -0600 Subject: Remove additional unneeded tq method conversions --- juk/playlistbox.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'juk/playlistbox.cpp') 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); } -- cgit v1.2.1