summaryrefslogtreecommitdiffstats
path: root/kworldwatch/flow.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:59:40 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-04 02:12:12 +0200
commit82719e3d3766b49e507b4d0811133884f27c898e (patch)
treec1eba6519790b4194cc93b114b0f1d3947fe6a36 /kworldwatch/flow.cpp
parentb4dcf7866a6902adf76c3837f65395a37973a681 (diff)
downloadtdetoys-82719e3d3766b49e507b4d0811133884f27c898e.tar.gz
tdetoys-82719e3d3766b49e507b4d0811133884f27c898e.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 59a076e9336f1eebda8650437e6bc61077be1516)
Diffstat (limited to 'kworldwatch/flow.cpp')
-rw-r--r--kworldwatch/flow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kworldwatch/flow.cpp b/kworldwatch/flow.cpp
index 724275e..cb35521 100644
--- a/kworldwatch/flow.cpp
+++ b/kworldwatch/flow.cpp
@@ -155,7 +155,7 @@ int SimpleFlow::count() const {
\reimp
*/
TQLayoutItem* SimpleFlow::itemAt(int index) const {
- return index >= 0 && index < list.count() ? (const_cast<TQPtrList<TQLayoutItem>&>(list).tqat(index)) : 0;
+ return index >= 0 && index < list.count() ? (const_cast<TQPtrList<TQLayoutItem>&>(list).at(index)) : 0;
}
/*!
@@ -164,8 +164,8 @@ TQLayoutItem* SimpleFlow::itemAt(int index) const {
TQLayoutItem* SimpleFlow::takeAt(int index) {
if (index < 0 || index >= list.count())
return 0;
- TQLayoutItem *item = list.tqat(index);
- list.remove(list.tqat(index));
+ TQLayoutItem *item = list.at(index);
+ list.remove(list.at(index));
delete item;
invalidate();