diff options
author | Michele Calgaro <[email protected]> | 2023-12-07 12:59:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-07 12:59:42 +0900 |
commit | 1efbeb497b0498457a48efe0a4c0ea28a809effb (patch) | |
tree | d0b42481f4932873a6f86416f9e2649792a1084d /src/mergeresultwindow.cpp | |
parent | 7c9ad5461923e26231c3b13b0fa6fdcaa8f88b75 (diff) | |
download | kdiff3-1efbeb497b0498457a48efe0a4c0ea28a809effb.tar.gz kdiff3-1efbeb497b0498457a48efe0a4c0ea28a809effb.zip |
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/mergeresultwindow.cpp')
-rw-r--r-- | src/mergeresultwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mergeresultwindow.cpp b/src/mergeresultwindow.cpp index 1b1639d..8b38853 100644 --- a/src/mergeresultwindow.cpp +++ b/src/mergeresultwindow.cpp @@ -3210,8 +3210,8 @@ bool WindowTitleWidget::eventFilter( TQObject* o, TQEvent* e ) if ( lst.count() > 0 ) { - static_cast<TQLineEdit*>(TQT_TQWIDGET(o))->setText( lst[0] ); - static_cast<TQLineEdit*>(TQT_TQWIDGET(o))->setFocus(); + static_cast<TQLineEdit*>(o)->setText( lst[0] ); + static_cast<TQLineEdit*>(o)->setFocus(); return true; } } |