diff options
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(); |