diff options
Diffstat (limited to 'konqueror/listview')
-rw-r--r-- | konqueror/listview/konq_listviewitems.cc | 4 | ||||
-rw-r--r-- | konqueror/listview/konq_listviewwidget.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/konqueror/listview/konq_listviewitems.cc b/konqueror/listview/konq_listviewitems.cc index a8f92c0d3..36aa10544 100644 --- a/konqueror/listview/konq_listviewitems.cc +++ b/konqueror/listview/konq_listviewitems.cc @@ -216,7 +216,7 @@ void KonqListViewItem::setPixmap( int column, const TQPixmap& pm ) } // If we're just replacing the icon with another one its size -- i.e. a - // "highlighted" icon, don't bother tqrepainting the whole widget. + // "highlighted" icon, don't bother repainting the whole widget. TQListView *lv = m_pListViewWidget; @@ -225,7 +225,7 @@ void KonqListViewItem::setPixmap( int column, const TQPixmap& pm ) int y = lv->itemPos( this ); int w = newWidth; int h = height(); - lv->tqrepaintContents( x, y, w, h ); + lv->repaintContents( x, y, w, h ); } const TQPixmap* KonqListViewItem::pixmap( int column ) const diff --git a/konqueror/listview/konq_listviewwidget.cc b/konqueror/listview/konq_listviewwidget.cc index a39796579..2ecee655f 100644 --- a/konqueror/listview/konq_listviewwidget.cc +++ b/konqueror/listview/konq_listviewwidget.cc @@ -410,7 +410,7 @@ void KonqBaseListViewWidget::contentsMousePressEvent( TQMouseEvent *e ) TQRect r( m_rubber->normalize() ); delete m_rubber; m_rubber = 0; - tqrepaintContents( r, FALSE ); + repaintContents( r, FALSE ); } delete m_selected; @@ -448,7 +448,7 @@ void KonqBaseListViewWidget::contentsMouseReleaseEvent( TQMouseEvent *e ) TQRect r( m_rubber->normalize() ); delete m_rubber; m_rubber = 0; - tqrepaintContents( r, FALSE ); + repaintContents( r, FALSE ); } if ( m_scrollTimer ) |