summaryrefslogtreecommitdiffstats
path: root/karm/desktoptracker.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-13 00:46:47 +0000
commit67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch)
tree5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /karm/desktoptracker.cpp
parent2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff)
downloadtdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz
tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karm/desktoptracker.cpp')
-rw-r--r--karm/desktoptracker.cpp10
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