diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:30:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:30:51 -0600 |
commit | d737fa5621adb2f9504b4119a151615eeacba574 (patch) | |
tree | b219ca93c9910b179c0891e9b0e353f94465b03a /KMFIPTInterface | |
parent | 88c5eb48afe6160b21916f2c4bb779de9c8992a0 (diff) | |
download | kmyfirewall-d737fa5621adb2f9504b4119a151615eeacba574.tar.gz kmyfirewall-d737fa5621adb2f9504b4119a151615eeacba574.zip |
Rename a number of old tq methods that are no longer tq specific
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 ); |