summaryrefslogtreecommitdiffstats
path: root/amarok/src/statistics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/statistics.cpp')
-rw-r--r--amarok/src/statistics.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/amarok/src/statistics.cpp b/amarok/src/statistics.cpp
index 1efed47f..605a84e8 100644
--- a/amarok/src/statistics.cpp
+++ b/amarok/src/statistics.cpp
@@ -556,7 +556,7 @@ StatisticsList::expandInformation( StatisticsItem *item, bool refresh )
}
item->setExpanded( true );
- tqrepaintItem( item ); // Better than ::tqrepaint(), flickers less
+ repaintItem( item ); // Better than ::tqrepaint(), flickers less
delete locale;
}
@@ -735,7 +735,7 @@ StatisticsItem::slotAnimTimer()
if( m_animEnter )
{
m_animCount += 1;
- listView()->tqrepaintItem( this ); // Better than ::tqrepaint(), flickers less
+ listView()->repaintItem( this ); // Better than ::tqrepaint(), flickers less
if( m_animCount >= ANIM_MAX )
m_animTimer->stop();
@@ -743,7 +743,7 @@ StatisticsItem::slotAnimTimer()
else
{
m_animCount -= 1;
- listView()->tqrepaintItem( this );
+ listView()->repaintItem( this );
if( m_animCount <= 0 )
{
m_animTimer->stop();