diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-24 07:08:32 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-24 07:08:32 +0000 |
commit | aca844682f86c04f6b67b23de2a820fb0c63a32e (patch) | |
tree | 2c26de587f689a20a49e400eab3fcb6d88c78b13 /ksirc/puke/ppushbt.cpp | |
parent | 9c496cd9917ea30e87a6f697b5d19119a9e2e563 (diff) | |
download | tdenetwork-aca844682f86c04f6b67b23de2a820fb0c63a32e.tar.gz tdenetwork-aca844682f86c04f6b67b23de2a820fb0c63a32e.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/kdenetwork@1222475 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/puke/ppushbt.cpp')
-rw-r--r-- | ksirc/puke/ppushbt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksirc/puke/ppushbt.cpp b/ksirc/puke/ppushbt.cpp index 346abcd3..f006fbd2 100644 --- a/ksirc/puke/ppushbt.cpp +++ b/ksirc/puke/ppushbt.cpp @@ -45,7 +45,7 @@ void PPushButton::messageHandler(int fd, PukeMessage *pm) void PPushButton::setWidget(TQObject *_qb) { - if(_qb != 0 && _qb->inherits("TQPushButton") == FALSE) + if(_qb != 0 && _qb->inherits(TQPUSHBUTTON_OBJECT_NAME_STRING) == FALSE) { errorInvalidSet(_qb); return; |