diff options
Diffstat (limited to 'kdat/ktreeview.cpp')
-rw-r--r-- | kdat/ktreeview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdat/ktreeview.cpp b/kdat/ktreeview.cpp index c43cb35..2a31a19 100644 --- a/kdat/ktreeview.cpp +++ b/kdat/ktreeview.cpp @@ -155,7 +155,7 @@ int KTreeViewItem::childIndex(KTreeViewItem* searched) const // indicates whether mouse press is in expand button inline bool KTreeViewItem::expandButtonClicked(const TQPoint& coord) const { - return expandButton.tqcontains(coord); + return expandButton.contains(coord); } bool KTreeViewItem::mousePressEvent( const TQPoint& ) @@ -1681,7 +1681,7 @@ void KTreeView::mouseDoubleClickEvent(TQMouseEvent *e) // hit test item int indent = indentation(item); - if(item->boundingRect(indent).tqcontains(cellCoord)) + if(item->boundingRect(indent).contains(cellCoord)) emit selected(itemClicked); } @@ -1749,7 +1749,7 @@ void KTreeView::mousePressEvent(TQMouseEvent *e) emit selected(itemClicked); } // hit item (to show info on the file/dir label clicked) - else if (item->boundingRect(indentation(item)).tqcontains(cellCoord)) { + else if (item->boundingRect(indentation(item)).contains(cellCoord)) { setCurrentItem(itemClicked); // highlight item if ( e->button() == Qt::RightButton ) { emit popupMenu( itemClicked, mapToGlobal( TQPoint( e->pos().x(), e->pos().y() ) ) ); |