diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 20:43:20 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 23:46:05 +0900 |
| commit | 5761876d3a71e9b3c5a93b5b535b071d2240b08e (patch) | |
| tree | 0ea383b7af28380ecec4a4059b1ed0bdcdbe8338 /lib/koproperty/editors/booledit.cpp | |
| parent | 2891d3c2d54dea1e2dd2a6702ee209b6f01f73f4 (diff) | |
| download | koffice-5761876d.tar.gz koffice-5761876d.zip | |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d7ae9fb514226c126e04cfe4f34800beb9f4ea19)
Diffstat (limited to 'lib/koproperty/editors/booledit.cpp')
| -rw-r--r-- | lib/koproperty/editors/booledit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/koproperty/editors/booledit.cpp b/lib/koproperty/editors/booledit.cpp index 0e14bf27b..fb71a4453 100644 --- a/lib/koproperty/editors/booledit.cpp +++ b/lib/koproperty/editors/booledit.cpp @@ -131,7 +131,7 @@ bool BoolEdit::eventFilter(TQObject* watched, TQEvent* e) { if(e->type() == TQEvent::KeyPress) { - TQKeyEvent* ev = TQT_TQKEYEVENT(e); + TQKeyEvent* ev = static_cast<TQKeyEvent*>(e); const int k = ev->key(); if(k == TQt::Key_Space || k == TQt::Key_Enter || k == TQt::Key_Return) { if (m_toggle) |
