summaryrefslogtreecommitdiffstats
path: root/arts
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 21:31:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 21:31:00 +0900
commit7ef70d6552605c1df5653f039314c3ac568069cc (patch)
treedb2665f267bfba3c2eac260ba5c5fcc29b1ff4d7 /arts
parent1304109bee51323c2fb7258df91b2d4eccd83030 (diff)
downloadtdemultimedia-7ef70d6552605c1df5653f039314c3ac568069cc.tar.gz
tdemultimedia-7ef70d6552605c1df5653f039314c3ac568069cc.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'arts')
-rw-r--r--arts/builder/propertypanel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/arts/builder/propertypanel.cpp b/arts/builder/propertypanel.cpp
index 25809100..9f306d15 100644
--- a/arts/builder/propertypanel.cpp
+++ b/arts/builder/propertypanel.cpp
@@ -341,7 +341,7 @@ bool PropertyPanel::eventFilter( TQObject *o, TQEvent *e )
{
if( port && !constantValueEdit->hasFocus() && (e->type() == TQEvent::KeyPress) ) {
// kdDebug() << TQString(" ..is KeyPress") << endl;
- TQString entered = TQT_TQKEYEVENT(e)->text();
+ TQString entered = static_cast<TQKeyEvent*>(e)->text();
bool goodString = entered.length() > 0;
// kdDebug() << TQString("pressed '%1'").arg(entered) << endl;