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 | db22462503588f4942c9c73aad278413206e4228 (patch) | |
tree | 57d3734fc2e47345ebc1ff9dabac647686873c75 /umbrello | |
parent | 57fb87513f2f911884ef34a308a5b7882f169fea (diff) | |
download | tdesdk-db22462503588f4942c9c73aad278413206e4228.tar.gz tdesdk-db22462503588f4942c9c73aad278413206e4228.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/kdesdk@1222475 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'umbrello')
-rw-r--r-- | umbrello/umbrello/umllistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/umbrello/umbrello/umllistview.cpp b/umbrello/umbrello/umllistview.cpp index 29e270ce..f213c01d 100644 --- a/umbrello/umbrello/umllistview.cpp +++ b/umbrello/umbrello/umllistview.cpp @@ -142,7 +142,7 @@ UMLListView::UMLListView(TQWidget *parent, const char *name) UMLListView::~UMLListView() {} bool UMLListView::eventFilter(TQObject *o, TQEvent *e) { - if (e->type() != TQEvent::MouseButtonPress || !o->isA("TQHeader")) + if (e->type() != TQEvent::MouseButtonPress || !o->isA(TQHEADER_OBJECT_NAME_STRING)) return TQListView::eventFilter(o, e); TQMouseEvent *me = static_cast<TQMouseEvent*>(e); if (me->button() == Qt::RightButton) { |