summaryrefslogtreecommitdiffstats
path: root/juk
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-24 07:08:32 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-24 07:08:32 +0000
commit4ddfca384ced9ad654213aef9dc2c3973720b980 (patch)
treeb01b4c232af26752115dca42ee4cc7632982e549 /juk
parent1b4dc219564ccb5131bc23bd11c200076f09bfbc (diff)
downloadtdemultimedia-4ddfca384ced9ad654213aef9dc2c3973720b980.tar.gz
tdemultimedia-4ddfca384ced9ad654213aef9dc2c3973720b980.zip
Fix a number of runtime object identification problems which led to an even larger array of minor glitches
NOTE: kdevelop and kdewebdev still need to be fully repaired git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1222475 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'juk')
-rw-r--r--juk/tageditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/juk/tageditor.cpp b/juk/tageditor.cpp
index 449f4392..eb2dfa88 100644
--- a/juk/tageditor.cpp
+++ b/juk/tageditor.cpp
@@ -767,7 +767,7 @@ void TagEditor::showEvent(TQShowEvent *e)
bool TagEditor::eventFilter(TQObject *watched, TQEvent *e)
{
TQKeyEvent *ke = static_cast<TQKeyEvent*>(e);
- if(watched->inherits("TQSpinBox") && e->type() == TQEvent::KeyRelease && ke->state() == 0)
+ if(watched->inherits(TQSPINBOX_OBJECT_NAME_STRING) && e->type() == TQEvent::KeyRelease && ke->state() == 0)
slotDataChanged();
return false;