diff options
Diffstat (limited to 'klaptopdaemon/xautolock.cc')
-rw-r--r-- | klaptopdaemon/xautolock.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klaptopdaemon/xautolock.cc b/klaptopdaemon/xautolock.cc index 51e1637..25b2242 100644 --- a/klaptopdaemon/xautolock.cc +++ b/klaptopdaemon/xautolock.cc @@ -246,14 +246,14 @@ bool XAutoLock::x11Event( XEvent* ev ) // don't futher process key events that were received only because XAutoLock wants them if( ev->type == KeyPress && !ev->xkey.send_event && !xautolock_useXidle && !xautolock_useMit - && !TQWidget::tqfind( ev->xkey.window )) + && !TQWidget::find( ev->xkey.window )) return true; return false; } bool XAutoLock::ignoreWindow( WId w ) { - if( w != qt_xrootwin() && TQWidget::tqfind( w )) + if( w != qt_xrootwin() && TQWidget::find( w )) return true; return false; } |