diff options
author | Michele Calgaro <[email protected]> | 2023-12-07 12:59:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-08 20:52:17 +0900 |
commit | 835702ea8d041b2521be63dfe0faf75ece29c7f7 (patch) | |
tree | f72ca30d8f7fb4aa07779607e36097a21296b44d /src/difftextwindow.cpp | |
parent | 95d0ba611515af0b74b92182055508e9ae884b35 (diff) | |
download | kdiff3-835702ea8d041b2521be63dfe0faf75ece29c7f7.tar.gz kdiff3-835702ea8d041b2521be63dfe0faf75ece29c7f7.zip |
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 1efbeb497b0498457a48efe0a4c0ea28a809effb)
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 1234545..52a04c2 100644 --- a/src/difftextwindow.cpp +++ b/src/difftextwindow.cpp @@ -1695,8 +1695,8 @@ bool DiffTextWindowFrame::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(); emit fileNameChanged( lst[0], pDTW->d->m_winIdx ); return true; } |