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/difftextwindow.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/difftextwindow.cpp')
| -rw-r--r-- | src/difftextwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/difftextwindow.cpp b/src/difftextwindow.cpp index 0be3f42..0e4a0f7 100644 --- a/src/difftextwindow.cpp +++ b/src/difftextwindow.cpp @@ -398,7 +398,7 @@ void DiffTextWindow::focusInEvent(TQFocusEvent* e) void DiffTextWindow::mousePressEvent ( TQMouseEvent* e ) { - if ( e->button() == Qt::LeftButton ) + if ( e->button() == TQt::LeftButton ) { int line; int pos; @@ -458,7 +458,7 @@ void DiffTextWindow::mouseDoubleClickEvent( TQMouseEvent* e ) { d->m_bSelectionInProgress = false; d->m_lastKnownMousePos = e->pos(); - if ( e->button() == Qt::LeftButton ) + if ( e->button() == TQt::LeftButton ) { int line; int pos; |
