summaryrefslogtreecommitdiffstats
path: root/arts/builder
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-12-02 22:46:24 +0900
commit452c1e8191d38a7449364467ae0601ace808e7f7 (patch)
treed468d9f534be62e275feb15dc903af92f02e7547 /arts/builder
parentbd26faa962728155a0a4337ea54b3eb6a454df0b (diff)
downloadtdemultimedia-452c1e8191d38a7449364467ae0601ace808e7f7.tar.gz
tdemultimedia-452c1e8191d38a7449364467ae0601ace808e7f7.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 7ef70d6552605c1df5653f039314c3ac568069cc)
Diffstat (limited to 'arts/builder')
-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;