diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:00 +0900 |
commit | 7ef70d6552605c1df5653f039314c3ac568069cc (patch) | |
tree | db2665f267bfba3c2eac260ba5c5fcc29b1ff4d7 /juk/tageditor.cpp | |
parent | 1304109bee51323c2fb7258df91b2d4eccd83030 (diff) | |
download | tdemultimedia-7ef70d6552605c1df5653f039314c3ac568069cc.tar.gz tdemultimedia-7ef70d6552605c1df5653f039314c3ac568069cc.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'juk/tageditor.cpp')
-rw-r--r-- | juk/tageditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/juk/tageditor.cpp b/juk/tageditor.cpp index c0b0a183..c1200e3d 100644 --- a/juk/tageditor.cpp +++ b/juk/tageditor.cpp @@ -768,7 +768,7 @@ void TagEditor::showEvent(TQShowEvent *e) bool TagEditor::eventFilter(TQObject *watched, TQEvent *e) { - TQKeyEvent *ke = TQT_TQKEYEVENT(e); + TQKeyEvent *ke = static_cast<TQKeyEvent*>(e); if(watched->inherits("TQSpinBox") && e->type() == TQEvent::KeyRelease && ke->state() == 0) slotDataChanged(); |