summaryrefslogtreecommitdiffstats
path: root/plugins/infowidget/iwfiletreeitem.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
commit1c1403293485f35fd53db45aaa77a01cdd9627e7 (patch)
tree38559cd68cd4f63023fb5f6375def9db3b8b491e /plugins/infowidget/iwfiletreeitem.cpp
parent894f94545727610df22c4f73911d62d58266f695 (diff)
downloadktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.tar.gz
ktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.zip
TQt4 port ktorrent
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1238733 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/infowidget/iwfiletreeitem.cpp')
-rw-r--r--plugins/infowidget/iwfiletreeitem.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/infowidget/iwfiletreeitem.cpp b/plugins/infowidget/iwfiletreeitem.cpp
index e6281df..fbfdb4b 100644
--- a/plugins/infowidget/iwfiletreeitem.cpp
+++ b/plugins/infowidget/iwfiletreeitem.cpp
@@ -33,19 +33,19 @@ using namespace kt;
namespace kt
{
- IWFileTreeItem::IWFileTreeItem(IWFileTreeDirItem* item,const QString & name,kt::TorrentFileInterface & file)
+ IWFileTreeItem::IWFileTreeItem(IWFileTreeDirItem* item,const TQString & name,kt::TorrentFileInterface & file)
: FileTreeItem(item,name,file)
{
perc_complete = 0.0;
- connect(&file,SIGNAL(downloadPercentageChanged( float )),this,SLOT(onPercentageUpdated( float )));
- connect(&file,SIGNAL(previewAvailable( bool )),this,SLOT(onPreviewAvailable( bool )));
+ connect(&file,TQT_SIGNAL(downloadPercentageChanged( float )),this,TQT_SLOT(onPercentageUpdated( float )));
+ connect(&file,TQT_SIGNAL(previewAvailable( bool )),this,TQT_SLOT(onPreviewAvailable( bool )));
}
IWFileTreeItem::~IWFileTreeItem()
{
}
- int IWFileTreeItem::compare(QListViewItem* i, int col, bool ascending) const
+ int IWFileTreeItem::compare(TQListViewItem* i, int col, bool ascending) const
{
if (col == 4)
{
@@ -92,7 +92,7 @@ namespace kt
else if (percent > 100.0)
percent = 100.0;
KLocale* loc = KGlobal::locale();
- setText(4,i18n("%1 %").arg(loc->formatNumber(percent,2)));
+ setText(4,i18n("%1 %").tqarg(loc->formatNumber(percent,2)));
perc_complete = percent;
}
@@ -147,8 +147,8 @@ namespace kt
{
return bt::KEEP_DATA;
/*
- QString msg = i18n("Do you want to keep the existing data for seeding ?");
- int ret = KMessageBox::warningYesNoCancel(0,msg,QString::null,
+ TQString msg = i18n("Do you want to keep the existing data for seeding ?");
+ int ret = KMessageBox::warningYesNoCancel(0,msg,TQString(),
KGuiItem(i18n("Keep the data")),
KGuiItem(i18n("Delete the data")));
if (ret == KMessageBox::Yes)