From 699e356180fde57a72e0c37af2170b87a95f90b4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 18 Dec 2011 18:14:09 -0600 Subject: Rename old tq methods that no longer need a unique name --- src/listviewtooltip.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/listviewtooltip.h') diff --git a/src/listviewtooltip.h b/src/listviewtooltip.h index 1fbd9e2..62ecb36 100644 --- a/src/listviewtooltip.h +++ b/src/listviewtooltip.h @@ -45,8 +45,8 @@ inline void ListViewToolTip::maybeTip ( const TQPoint& p ) const TQListViewItem* item = listView->itemAt ( p ); if ( !item ) return; - const TQRect tqitemRect = listView->tqitemRect ( item ); - if ( !tqitemRect.isValid() ) + const TQRect itemRect = listView->itemRect ( item ); + if ( !itemRect.isValid() ) return; const int col = listView->header()->sectionAt ( p.x() ); const int row = listView->header()->sectionAt ( p.y() ); @@ -56,9 +56,9 @@ inline void ListViewToolTip::maybeTip ( const TQPoint& p ) const TQRect headerRect = listView->header()->sectionRect ( col ); if ( !headerRect.isValid() ) return; -// const TQRect cellRect ( headerRect.left(), tqitemRect.top(), -// headerRect.width(), tqitemRect.height() ); - const TQRect cellRect ( headerRect.left(), tqitemRect.top(), 400, 200 ); +// const TQRect cellRect ( headerRect.left(), itemRect.top(), +// headerRect.width(), itemRect.height() ); + const TQRect cellRect ( headerRect.left(), itemRect.top(), 400, 200 ); TQString tipStr; tipStr = TQString ( "

"+item->text ( 0 )+"

"); -- cgit v1.2.1