diff options
author | Michele Calgaro <[email protected]> | 2023-11-30 21:31:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-30 21:31:08 +0900 |
commit | 5dc12cbb83fe0a99816c94292071e9495cc2c440 (patch) | |
tree | 5aa4412efc99b120eda1853c0166c671e7591f67 /ksirc | |
parent | 335c366622612e7641001c7b4de62024152f0ff1 (diff) | |
download | tdenetwork-5dc12cbb83fe0a99816c94292071e9495cc2c440.tar.gz tdenetwork-5dc12cbb83fe0a99816c94292071e9495cc2c440.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ksirc')
-rw-r--r-- | ksirc/ahistlineedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksirc/ahistlineedit.cpp b/ksirc/ahistlineedit.cpp index 0e0be1c6..6f3b038e 100644 --- a/ksirc/ahistlineedit.cpp +++ b/ksirc/ahistlineedit.cpp @@ -363,7 +363,7 @@ void aHistLineEdit::mousePressEvent ( TQMouseEvent *e ) bool aHistLineEdit::eventFilter( TQObject *o, TQEvent *e ) { if ( o == this && e->type() == TQEvent::AccelOverride ) - if(processKeyEvent( TQT_TQKEYEVENT( e ) ) == true) + if(processKeyEvent( static_cast<TQKeyEvent*>( e ) ) == true) return true; return TQTextEdit::eventFilter( o, e ); |