diff options
Diffstat (limited to 'karm/desktoptracker.cpp')
-rw-r--r-- | karm/desktoptracker.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/karm/desktoptracker.cpp b/karm/desktoptracker.cpp index 04f4d9d13..3c9e5e846 100644 --- a/karm/desktoptracker.cpp +++ b/karm/desktoptracker.cpp @@ -1,4 +1,4 @@ -#include <algorithm> // std::find +#include <algorithm> // std::tqfind #include <tqtimer.h> #include <kdebug.h> @@ -84,7 +84,7 @@ void DesktopTracker::registerForDesktops( Task* task, DesktopList desktopList) if (desktopList.size()==0) { for (int i=0; i<maxDesktops; i++) { TaskVector *v = &(desktopTracker[i]); - TaskVector::iterator tit = std::find(v->begin(), v->end(), task); + TaskVector::iterator tit = std::tqfind(v->begin(), v->end(), task); if (tit != v->end()) desktopTracker[i].erase(tit); // if the task was priviously tracking this desktop then @@ -96,15 +96,15 @@ void DesktopTracker::registerForDesktops( Task* task, DesktopList desktopList) return; } - // If desktop tqcontains entries then configure desktopTracker + // If desktop contains entries then configure desktopTracker // If a desktop was disabled, it will not be stopped automatically. // If enabled: Start it now. if (desktopList.size()>0) { for (int i=0; i<maxDesktops; i++) { TaskVector& v = desktopTracker[i]; - TaskVector::iterator tit = std::find(v.begin(), v.end(), task); + TaskVector::iterator tit = std::tqfind(v.begin(), v.end(), task); // Is desktop i in the desktop list? - if ( std::find( desktopList.begin(), desktopList.end(), i) + if ( std::tqfind( desktopList.begin(), desktopList.end(), i) != desktopList.end()) { if (tit == v.end()) // not yet in start vector v.push_back(task); // track in desk i |