diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:54 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-01 00:14:33 +0900 |
commit | dd931b3ea9ab2bb3effe05d1533f57fd8d7e01ca (patch) | |
tree | d8e08433e02631259733ac5bac7426aca3bdad31 /quanta/treeviews | |
parent | b4887167404390a15f8ba25da1ae0348e27b2699 (diff) | |
download | tdewebdev-dd931b3ea9ab2bb3effe05d1533f57fd8d7e01ca.tar.gz tdewebdev-dd931b3ea9ab2bb3effe05d1533f57fd8d7e01ca.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d72f4843816818bdb27e7faae86e68d51d624267)
Diffstat (limited to 'quanta/treeviews')
-rw-r--r-- | quanta/treeviews/tagattributetree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quanta/treeviews/tagattributetree.cpp b/quanta/treeviews/tagattributetree.cpp index 26d676d2..335fafc6 100644 --- a/quanta/treeviews/tagattributetree.cpp +++ b/quanta/treeviews/tagattributetree.cpp @@ -128,7 +128,7 @@ bool DualEditableTree::eventFilter(TQObject *object, TQEvent *event) if(event->type() == TQEvent::KeyPress && m_editable) { - TQKeyEvent *keyevent = TQT_TQKEYEVENT(event); + TQKeyEvent *keyevent = static_cast<TQKeyEvent*>(event); switch(keyevent->key()) { case Key_Left: |