diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 22:03:33 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:26:36 +0900 |
| commit | d3cfbab1a822e0ae5d65cd49a2719665076baae5 (patch) | |
| tree | 7c49ea137f1c496f226b4f12c70f18af332ae647 /src/mergeresultwindow.cpp | |
| parent | 5c7ab4d3fbbf174717354d9450b428b5eb64db88 (diff) | |
| download | kdiff3-d3cfbab1a822e0ae5d65cd49a2719665076baae5.tar.gz kdiff3-d3cfbab1a822e0ae5d65cd49a2719665076baae5.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 77c18c3fabbb1e81db72c70044f68ddb78d18581)
Diffstat (limited to 'src/mergeresultwindow.cpp')
| -rw-r--r-- | src/mergeresultwindow.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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; |
