summaryrefslogtreecommitdiffstats
path: root/plugins/ipfilter/ipblockingprefpage.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-27 21:38:57 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-27 21:38:57 +0000
commit2410b4e25d39f34c5312311423ecbc43941703a3 (patch)
treea3fc715668c2e65da4c972f261de0cc6f44417a8 /plugins/ipfilter/ipblockingprefpage.cpp
parent1fd6d1afcbe91ded5fa58f724143f81f8b1084f9 (diff)
downloadktorrent-2410b4e25d39f34c5312311423ecbc43941703a3.tar.gz
ktorrent-2410b4e25d39f34c5312311423ecbc43941703a3.zip
Fix a number of accidental tqStatus string conversions
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1249829 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/ipfilter/ipblockingprefpage.cpp')
-rw-r--r--plugins/ipfilter/ipblockingprefpage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/ipfilter/ipblockingprefpage.cpp b/plugins/ipfilter/ipblockingprefpage.cpp
index 210e8c5..c717c6a 100644
--- a/plugins/ipfilter/ipblockingprefpage.cpp
+++ b/plugins/ipfilter/ipblockingprefpage.cpp
@@ -67,13 +67,13 @@ namespace kt
if(use_level1)
{
- lbl_status1->setText(i18n("tqStatus: Loaded and running."));
+ lbl_status1->setText(i18n("Status: Loaded and running."));
m_url->setEnabled(true);
btnDownload->setEnabled(true);
}
else
{
- lbl_status1->setText(i18n("tqStatus: Not loaded."));
+ lbl_status1->setText(i18n("Status: Not loaded."));
m_url->setEnabled(false);
btnDownload->setEnabled(false);
}
@@ -91,12 +91,12 @@ namespace kt
{
TQFile target(KGlobal::dirs()->saveLocation("data","ktorrent") + "level1.dat");
if(target.exists())
- lbl_status1->setText(i18n("tqStatus: Loaded and running."));
+ lbl_status1->setText(i18n("Status: Loaded and running."));
else
- lbl_status1->setText(i18n("tqStatus: <font color=\"#ff0000\">Filter file not found.</font> Download and convert filter file."));
+ lbl_status1->setText(i18n("Status: <font color=\"#ff0000\">Filter file not found.</font> Download and convert filter file."));
}
else
- lbl_status1->setText(i18n("tqStatus: Not loaded."));
+ lbl_status1->setText(i18n("Status: Not loaded."));
}
void IPBlockingPrefPageWidget::btnDownload_clicked()