diff options
Diffstat (limited to 'src/common/gui/hexword_gui.cpp')
-rw-r--r-- | src/common/gui/hexword_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/gui/hexword_gui.cpp b/src/common/gui/hexword_gui.cpp index d6ee42f..9a2a8ea 100644 --- a/src/common/gui/hexword_gui.cpp +++ b/src/common/gui/hexword_gui.cpp @@ -84,7 +84,7 @@ bool GenericHexWordEditor::event(TQEvent *e) TQTimer::singleShot(0, this, TQT_SLOT(selectAll())); // ugly but it works break; case TQEvent::KeyPress: - switch ( TQT_TQKEYEVENT(e)->key() ) { + switch ( static_cast<TQKeyEvent*>(e)->key() ) { case Key_Next: emit moveNextPage(); return true; |