diff options
Diffstat (limited to 'kregexpeditor/KMultiFormListBox/ccp.cpp')
-rw-r--r-- | kregexpeditor/KMultiFormListBox/ccp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kregexpeditor/KMultiFormListBox/ccp.cpp b/kregexpeditor/KMultiFormListBox/ccp.cpp index 078ee7f..4f0d4b3 100644 --- a/kregexpeditor/KMultiFormListBox/ccp.cpp +++ b/kregexpeditor/KMultiFormListBox/ccp.cpp @@ -32,7 +32,7 @@ CCP::CCP(KMultiFormListBoxMultiVisible *ee_, KMultiFormListBoxEntry *eee_) : TQObject() { ee = ee_; eee = eee_; - install(TQT_TQOBJECT(eee)); + install(eee); } void CCP::install(TQObject *elm) @@ -58,7 +58,7 @@ void CCP::install(TQObject *elm) bool CCP::eventFilter(TQObject *, TQEvent *event) { if (event->type() != TQEvent::MouseButtonPress || - ((TQMouseEvent *) event)->button() != Qt::RightButton || + ((TQMouseEvent *) event)->button() != TQt::RightButton || ((TQMouseEvent *) event)->state() != TQEvent::ControlButton) { return false; } |