summaryrefslogtreecommitdiffstats
path: root/kpilot/listItems.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit539a35866f0bac8f00e493654d4a8ec6863726e2 (patch)
tree8991e5472fe88379787cafa85542d94706bd6fa4 /kpilot/listItems.cc
parent45598e35650c5806ecf2d684afeeb0da41c3ff6b (diff)
downloadkpilot-539a35866f0bac8f00e493654d4a8ec6863726e2.tar.gz
kpilot-539a35866f0bac8f00e493654d4a8ec6863726e2.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpilot@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpilot/listItems.cc')
-rw-r--r--kpilot/listItems.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kpilot/listItems.cc b/kpilot/listItems.cc
index 1dbc09e..2b5b98e 100644
--- a/kpilot/listItems.cc
+++ b/kpilot/listItems.cc
@@ -176,12 +176,12 @@ void PilotListViewItem::setNumericCol(int col, bool numeric)
// FUNCTIONSETUP;
if (numeric)
{
- if (!numericCols.tqcontains(col))
+ if (!numericCols.contains(col))
numericCols.append(col);
}
else
{
- if (numericCols.tqcontains(col))
+ if (numericCols.contains(col))
numericCols.remove(col);
}
}
@@ -211,7 +211,7 @@ int PilotListViewItem::compare( TQListViewItem *i, int col, bool ascending ) con
/*#ifdef DEBUG
DEBUGKPILOT<<"Item of dyn cast: "<<item<<endl;
#endif*/
- if (item && numericCols.tqcontains(col))
+ if (item && numericCols.contains(col))
{
/*#ifdef DEBUG
DEBUGKPILOT<<"Comparing: col "<<col<<", Ascending: "<<ascending<<endl;