summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/ktorrentviewitem.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:16 -0600
commit42a9872891eba166e81cf4f8c062261cc77398f8 (patch)
tree86b4f99b354b8d8eabeca2ffe1874b3c4c90d957 /apps/ktorrent/ktorrentviewitem.cpp
parentf96f74ffa7040e64ae3352e08c810c383c8a0ba2 (diff)
downloadktorrent-42a9872891eba166e81cf4f8c062261cc77398f8.tar.gz
ktorrent-42a9872891eba166e81cf4f8c062261cc77398f8.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit f96f74ffa7040e64ae3352e08c810c383c8a0ba2.
Diffstat (limited to 'apps/ktorrent/ktorrentviewitem.cpp')
-rw-r--r--apps/ktorrent/ktorrentviewitem.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/ktorrent/ktorrentviewitem.cpp b/apps/ktorrent/ktorrentviewitem.cpp
index a9392bd..1156b88 100644
--- a/apps/ktorrent/ktorrentviewitem.cpp
+++ b/apps/ktorrent/ktorrentviewitem.cpp
@@ -30,7 +30,7 @@
using namespace bt;
using namespace kt;
/*
-static TQString StatusToString(TorrentInterface* tc,TorrentStatus s)
+static TQString StatusToString(TorrentInterface* tc,TorrenttqStatus s)
{
switch (s)
{
@@ -55,7 +55,7 @@ static TQString StatusToString(TorrentInterface* tc,TorrentStatus s)
}
*/
-static TQColor StatusToColor(TorrentStatus s,const TQColorGroup & cg)
+static TQColor StatusToColor(TorrenttqStatus s,const TQColorGroup & cg)
{
TQColor green(40,205,40);
TQColor yellow(255,174,0);
@@ -222,7 +222,7 @@ void KTorrentViewItem::update()
Uint32 secs = tc->getETA();
if(secs == -1)
{
- setText(7,TQString("%1").arg(TQChar(0x221E)));
+ setText(7,TQString("%1").tqarg(TQChar(0x221E)));
eta = -2;
}
else
@@ -233,7 +233,7 @@ void KTorrentViewItem::update()
}
else
{
- setText(7,TQString("%1").arg(TQChar(0x221E)));
+ setText(7,TQString("%1").tqarg(TQChar(0x221E)));
eta = -2;
}
}
@@ -242,23 +242,23 @@ void KTorrentViewItem::update()
if(m_parent->columnVisible(8))
{
- setText(8,TQString("%1 (%2)").arg(TQString::number(s.seeders_connected_to)).arg(TQString::number(s.seeders_total)));
+ setText(8,TQString("%1 (%2)").tqarg(TQString::number(s.seeders_connected_to)).tqarg(TQString::number(s.seeders_total)));
}
if(m_parent->columnVisible(9))
{
- setText(9,TQString("%1 (%2)").arg(TQString::number(s.leechers_connected_to)).arg(TQString::number(s.leechers_total)));
+ setText(9,TQString("%1 (%2)").tqarg(TQString::number(s.leechers_connected_to)).tqarg(TQString::number(s.leechers_total)));
}
if(m_parent->columnVisible(10))
{
- setText(10,i18n("%1 %").arg(KGlobal::locale()->formatNumber(Percentage(s),2)));
+ setText(10,i18n("%1 %").tqarg(KGlobal::locale()->formatNumber(Percentage(s),2)));
}
if(m_parent->columnVisible(11))
{
float ratio = kt::ShareRatio(s);
- setText(11,TQString("%1").arg(KGlobal::locale()->formatNumber(ratio,2)));
+ setText(11,TQString("%1").tqarg(KGlobal::locale()->formatNumber(ratio,2)));
}
if (m_parent->columnVisible(12))