summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/torrentcreatordlg.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/torrentcreatordlg.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/torrentcreatordlg.cpp')
-rw-r--r--apps/ktorrent/torrentcreatordlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/ktorrent/torrentcreatordlg.cpp b/apps/ktorrent/torrentcreatordlg.cpp
index 8518de3..d42c06f 100644
--- a/apps/ktorrent/torrentcreatordlg.cpp
+++ b/apps/ktorrent/torrentcreatordlg.cpp
@@ -46,7 +46,7 @@ TorrentCreatorDlg::TorrentCreatorDlg(KTorrentCore* core,TQWidget *parent, const
TQMap<TQString, int> n = bt::Globals::instance().getDHT().getClosestGoodNodes(10);
for(TQMap<TQString, int>::iterator it = n.begin(); it!=n.end(); ++it)
- new TQListViewItem(m_nodeList, it.key(), TQString("%1").arg(it.data()));
+ new TQListViewItem(m_nodeList, it.key(), TQString("%1").tqarg(it.data()));
}
TorrentCreatorDlg::~TorrentCreatorDlg()
@@ -105,7 +105,7 @@ void TorrentCreatorDlg::onCreate()
s += ".torrent";
KProgressDialog* dlg = new KProgressDialog(this,0);
- dlg->setLabel(i18n("Creating %1...").arg(s));
+ dlg->setLabel(i18n("Creating %1...").tqarg(s));
dlg->setModal(true);
dlg->setAllowCancel(false);
dlg->show();
@@ -136,7 +136,7 @@ void TorrentCreatorDlg::btnRemoveNode_clicked()
void TorrentCreatorDlg::btnAddNode_clicked()
{
- new TQListViewItem(m_nodeList, m_node->text(), TQString("%1").arg(m_port->value()));
+ new TQListViewItem(m_nodeList, m_node->text(), TQString("%1").tqarg(m_port->value()));
}
void TorrentCreatorDlg::m_nodeList_selectionChanged(TQListViewItem*)