diff options
Diffstat (limited to 'chalk/plugins/viewplugins/screenshot')
-rw-r--r-- | chalk/plugins/viewplugins/screenshot/ksnapshot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chalk/plugins/viewplugins/screenshot/ksnapshot.cpp b/chalk/plugins/viewplugins/screenshot/ksnapshot.cpp index b07b4d3e..7fb3668f 100644 --- a/chalk/plugins/viewplugins/screenshot/ksnapshot.cpp +++ b/chalk/plugins/viewplugins/screenshot/ksnapshot.cpp @@ -270,7 +270,7 @@ void KSnapshot::slotRegionGrabbed( const TQPixmap &pix ) bool KSnapshot::eventFilter( TQObject* o, TQEvent* e) { - if ( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(grabber) && e->type() == TQEvent::MouseButtonPress ) { + if ( o == grabber && e->type() == TQEvent::MouseButtonPress ) { TQMouseEvent* me = (TQMouseEvent*) e; if ( TQWidget::mouseGrabber() != grabber ) return false; |