diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 20:42:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 20:42:04 +0900 |
commit | cda5b603bcae56e1e6d49ebbcefa6dbe89b8190c (patch) | |
tree | 7d74459181451f87c00378514ea980bc905b9dd8 /src/libgui/text_editor.cpp | |
parent | 753b5724e1fdbfb87852395722717a9c1643baa3 (diff) | |
download | piklab-cda5b603bcae56e1e6d49ebbcefa6dbe89b8190c.tar.gz piklab-cda5b603bcae56e1e6d49ebbcefa6dbe89b8190c.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/libgui/text_editor.cpp')
-rw-r--r-- | src/libgui/text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libgui/text_editor.cpp b/src/libgui/text_editor.cpp index f064ec4..34efcd7 100644 --- a/src/libgui/text_editor.cpp +++ b/src/libgui/text_editor.cpp @@ -83,7 +83,7 @@ void TextEditor::addToDebugManager() bool TextEditor::eventFilter(TQObject *, TQEvent *e) { if ( e->type()==TQEvent::KeyPress ) { - if ( TQT_TQKEYEVENT(e)->key()==Key_Escape ) return true; + if ( static_cast<TQKeyEvent*>(e)->key()==Key_Escape ) return true; } return false; } |