diff options
author | Michele Calgaro <[email protected]> | 2023-11-04 22:03:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-04 22:03:33 +0900 |
commit | 77c18c3fabbb1e81db72c70044f68ddb78d18581 (patch) | |
tree | 74da1d18fa0f89de6b010a2c7d8126d7e2782456 /src/mergeresultwindow.cpp | |
parent | 02927b1c01c2894f8c8f5268551505017d1385f7 (diff) | |
download | kdiff3-77c18c3fabbb1e81db72c70044f68ddb78d18581.tar.gz kdiff3-77c18c3fabbb1e81db72c70044f68ddb78d18581.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
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; |