From 6e21bc798ba1066147d69dcc2d5c222ffafb9a90 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: rename the following methods: tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdeui/kpanelapplet.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kdeui/kpanelapplet.cpp') diff --git a/kdeui/kpanelapplet.cpp b/kdeui/kpanelapplet.cpp index 152368b87..ece71ad54 100644 --- a/kdeui/kpanelapplet.cpp +++ b/kdeui/kpanelapplet.cpp @@ -146,13 +146,13 @@ void KPanelApplet::watchForFocus(TQWidget* widget, bool watch) if (watch) { - if (d->watchedForFocus.tqfind(TQT_TQOBJECT(widget)) == -1) + if (d->watchedForFocus.find(TQT_TQOBJECT(widget)) == -1) { d->watchedForFocus.append(TQT_TQOBJECT(widget)); widget->installEventFilter(this); } } - else if (d->watchedForFocus.tqfind(TQT_TQOBJECT(widget)) != -1) + else if (d->watchedForFocus.find(TQT_TQOBJECT(widget)) != -1) { d->watchedForFocus.remove(TQT_TQOBJECT(widget)); widget->removeEventFilter(this); @@ -172,7 +172,7 @@ void KPanelApplet::needsFocus(bool focus) bool KPanelApplet::eventFilter(TQObject *o, TQEvent * e) { - if (d->watchedForFocus.tqfind(o) != -1) + if (d->watchedForFocus.find(o) != -1) { if (e->type() == TQEvent::MouseButtonRelease || e->type() == TQEvent::FocusIn) -- cgit v1.2.1