summaryrefslogtreecommitdiffstats
path: root/plugins/ipfilter/antip2p.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:49 -0600
commitbb37c4052a9edfff2196984cef241b1ce2df7bb3 (patch)
tree20f184005dcb8d5315aec18cb3253c7ff452c8ca /plugins/ipfilter/antip2p.cpp
parenta90eb215f53c95d81f95b32255098066d90556d9 (diff)
downloadktorrent-bb37c4052a9edfff2196984cef241b1ce2df7bb3.tar.gz
ktorrent-bb37c4052a9edfff2196984cef241b1ce2df7bb3.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'plugins/ipfilter/antip2p.cpp')
-rw-r--r--plugins/ipfilter/antip2p.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/ipfilter/antip2p.cpp b/plugins/ipfilter/antip2p.cpp
index b3755ec..d37300e 100644
--- a/plugins/ipfilter/antip2p.cpp
+++ b/plugins/ipfilter/antip2p.cpp
@@ -67,19 +67,19 @@ namespace kt
tmp = ip;
tmp &= 0x000000FF;
- out.prepend(TQString("%1").tqarg(tmp));
+ out.prepend(TQString("%1").arg(tmp));
ip >>= 8;
tmp = ip;
tmp &= 0x000000FF;
- out.prepend(TQString("%1.").tqarg(tmp));
+ out.prepend(TQString("%1.").arg(tmp));
ip >>= 8;
tmp = ip;
tmp &= 0x000000FF;
- out.prepend(TQString("%1.").tqarg(tmp));
+ out.prepend(TQString("%1.").arg(tmp));
ip >>= 8;
tmp = ip;
tmp &= 0x000000FF;
- out.prepend(TQString("%1.").tqarg(tmp));
+ out.prepend(TQString("%1.").arg(tmp));
return out;
}