summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 20:42:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 20:42:04 +0900
commitcda5b603bcae56e1e6d49ebbcefa6dbe89b8190c (patch)
tree7d74459181451f87c00378514ea980bc905b9dd8
parent753b5724e1fdbfb87852395722717a9c1643baa3 (diff)
downloadpiklab-cda5b603.tar.gz
piklab-cda5b603.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/common/gui/hexword_gui.cpp2
-rw-r--r--src/common/gui/list_view.cpp2
-rw-r--r--src/libgui/text_editor.cpp2
3 files changed, 3 insertions, 3 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;
diff --git a/src/common/gui/list_view.cpp b/src/common/gui/list_view.cpp
index 97e6b16..8fbeee2 100644
--- a/src/common/gui/list_view.cpp
+++ b/src/common/gui/list_view.cpp
@@ -49,7 +49,7 @@ bool ListView::eventFilter(TQObject *o, TQEvent *e)
//tqDebug("event %i", e->type());
switch (e->type()) {
case TQEvent::KeyPress: {
- TQKeyEvent *ke = TQT_TQKEYEVENT(e);
+ TQKeyEvent *ke = static_cast<TQKeyEvent*>(e);
switch (ke->key()) {
case Key_Enter:
case Key_Return:
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;
}