diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:36:58 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-24 05:09:59 +0200 |
commit | 404733b396044ffd005083ded6246576288a141c (patch) | |
tree | d4b42cb8fea1c27b576877d47141e497b288a729 /KMFIPTInterface | |
parent | 97b691e5b7190342b85435f022bf3621ac80a461 (diff) | |
download | kmyfirewall-404733b396044ffd005083ded6246576288a141c.tar.gz kmyfirewall-404733b396044ffd005083ded6246576288a141c.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit b8b2c2b828b8e3a3aee8bc7d912975769c7aae88)
Diffstat (limited to 'KMFIPTInterface')
-rw-r--r-- | KMFIPTInterface/iptchecker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/KMFIPTInterface/iptchecker.cpp b/KMFIPTInterface/iptchecker.cpp index e69e8b5..9781c4c 100644 --- a/KMFIPTInterface/iptchecker.cpp +++ b/KMFIPTInterface/iptchecker.cpp @@ -138,7 +138,7 @@ TQStringList IPTChecker::getRuleProperties( char * table, char *chain, int ruleI target_name = iptc_get_target( my_rule, &h ); if ( target_name && (*target_name != '\0') ) { - list << TQString("%1").tqarg(target_name); + list << TQString("%1").arg(target_name); } @@ -151,7 +151,7 @@ TQStringList IPTChecker::getRuleProperties( char * table, char *chain, int ruleI } if ( t->u.user.name ) { - list << TQString("TARGET2:%1").tqarg(t->u.user.name); + list << TQString("TARGET2:%1").arg(t->u.user.name); struct iptables_target *target = find_target( target_name, TRY_LOAD ); |