From 77c18c3fabbb1e81db72c70044f68ddb78d18581 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 4 Nov 2023 22:03:33 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro --- src/mergeresultwindow.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/mergeresultwindow.cpp') diff --git a/src/mergeresultwindow.cpp b/src/mergeresultwindow.cpp index 293df49..646e700 100644 --- a/src/mergeresultwindow.cpp +++ b/src/mergeresultwindow.cpp @@ -1929,9 +1929,9 @@ void MergeResultWindow::mousePressEvent ( TQMouseEvent* e ) int pos; convertToLinePos( e->x(), e->y(), line, pos ); - bool bLMB = e->button() == Qt::LeftButton; - bool bMMB = e->button() == Qt::MidButton; - bool bRMB = e->button() == Qt::RightButton; + bool bLMB = e->button() == TQt::LeftButton; + bool bMMB = e->button() == TQt::MidButton; + bool bRMB = e->button() == TQt::RightButton; if ( bLMB && pos < m_firstColumn || bRMB ) // Fast range selection { @@ -1999,7 +1999,7 @@ void MergeResultWindow::mousePressEvent ( TQMouseEvent* e ) void MergeResultWindow::mouseDoubleClickEvent( TQMouseEvent* e ) { - if ( e->button() == Qt::LeftButton ) + if ( e->button() == TQt::LeftButton ) { int line; int pos; @@ -2033,7 +2033,7 @@ void MergeResultWindow::mouseDoubleClickEvent( TQMouseEvent* e ) void MergeResultWindow::mouseReleaseEvent ( TQMouseEvent * e ) { - if ( e->button() == Qt::LeftButton ) + if ( e->button() == TQt::LeftButton ) { killTimer(m_delayedDrawTimer); m_delayedDrawTimer = 0; -- cgit v1.2.3